-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 loc) · 1.41 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Validar Formulário</title>
</head>
<body>
<div class="screen">
<div class="leftside">
<img src="image/1.avif" alt="">
</div>
<div class="rightside">
<h1>Crie uma conta</h1>
<form method="post" class="validator">
<label for="">
Nome: <br>
<input type="text" name="name" data-rules="required|min=2">
</label>
<label for="">
E-mail: <br>
<input type="email" name="e-mail" data-rules="required|email">
</label>
<label for="">
Senha: <br>
<input type="password" name="password" data-rules="required|min=8">
</label>
<label>
<input type="submit" value="Cadastrar">
</label>
</form>
<div class="jatenho">
Já tem uma conta? <a href="http://">Faça o login.</a>
</div>
<div class="consfinal"> ® Criado por <a href="https://github.com/LuanSalesx">LuanSalesx Dev</a></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>