-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (34 loc) · 1.32 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 name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>form</title>
<link rel="stylesheet" href="./assets/css/resets.css">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<section class="container">
<h1>Formulário de cadastro</h1>
<form action="/" method="POST" class='formulario'>
<label class="label-nome">Nome</label>
<input type="text" class="nome validar">
<label class="label-sobrenome">Sobrenome</label>
<input type="text" class="sobrenome validar">
<label class="label-cpf">CPF</label>
<input type="text" class="cpf validar">
<label class="label-usuario">Usuário</label>
<input type="text" class="usuario validar">
<label class="label-senha">Senha</label>
<input type="password" class="senha validar">
<label>Repetir Senha</label>
<input type="password" class="repetir-senha validar">
<button type="submit" class="btn">Enviar</button>
</form>
</section>
<script src="./assets/js/validaCPF.js"></script>
<!-- <script src="./assets/js/validaForm.js"></script> -->
<script src="assets/js/form.js"></script>
</body>
</html>