-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (39 loc) · 1.38 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
47
48
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Validador de Formulário</title>
</head>
<body>
<div class="screen">
<div class="ldE">
<img src="./imagens/123.png" alt="">
</div>
<div class="ldD">
<h1>Crie sua Cona</h1>
<form method="post" class="validador" >
<label >
Seu nome: <br>
<input type="text" name = "nome" data-rules = "required|min=2">
</label>
<label >
Seu E-mail:
<input type="email" name = "e-mail" data-rules = "required">
</label>
<label >
Sua senha: <br>
<input type="password" name = "senha" data-rules = "required|4" >
</label>
<label >
<input type="submit" value ="Cadastrar">
</label>
</form>
<div> Já é cadastrado? <a href=""> Faça se Login</a></div>
</div>
</div>
<script src="java.js"></script>
</body>
</html>