-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (81 loc) · 3.06 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Cadastre-se</title>
<link href="index.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<body>
<div class="container">
<div class="form">
<h1>Faça seu cadastro!</h1>
<div class="label-float">
<input type="text" id="nome" placeholder=" " maxlength="60" required>
<label id="labelNome" for="nome"> Nome</label>
</div>
<div class="sexo">
<label id="labelSexo" for="sexo"> Sexo</label><br>
<input type="radio" name="sexo" value="masculino" id="masculino">
<label for="masculino">Masculino</label>
<input type="radio" name="sexo" value="feminino" id="feminino">
<label for="feminino">Feminino</label>
</div>
<div class="label-float">
<input type="date" name="data">
<label id="labelData" for="data">Data de Nascimento</label>
</div>
<!--<div class="label-float">
<input type="text" id="data" placeholder=" " required>
<label id="labelData" for="data">Data de Nascimento</label>
</div></!-->
<div class="label-float">
<input type="text" id="cpf" placeholder=" " maxlength="11" required>
<label id="labelCpf" for="cpf"> CPF</label>
</div>
<div class="label-float">
<input type="tel" id="telefone" placeholder=" " maxlength="16" required>
<label id="labelTelefone" for="telefone"> Telefone Fixo</label>
</div>
<div class="label-float">
<input type="tel" id="celular" placeholder=" " maxlength="17" required>
<label id="labelCelular" for="celular"> Telefone Celular</label>
</div>
<div class="label-float">
<input type="text" id="nomemat" placeholder=" " maxlength="60" required>
<label id="labelNomemat" for="nomemat"> Nome Materno</label>
</div>
<div class="label-float">
<input type="text" id="endereco" placeholder=" " maxlength="60" required>
<label id="labelEndereco" for="endereco">Endereço Completo</label>
</div>
<div class="label-float">
<input type="text" id="usuario" placeholder=" " required>
<label id="labelUsuario" for="usuario"> Login</label>
</div>
<div class="label-float">
<input type="password" id="senha" placeholder=" " required>
<label id="labelSenha" for="usuario"> Senha</label>
<i id="versenha" class="bi bi-eye" aria-hidden="true"></i>
</div>
<div class="label-float">
<input type="password" id="confirmsenha" placeholder=" " required>
<label id="labelConfirmSenha" for="confirmsenha"> Confirmar Senha</label>
<i id="vercsenha" class="bi bi-eye" aria-hidden="true"></i>
</div>
<div id='msgErro' ></div>
<div id='msgSucesso' ></div>
<div class="justify-center">
<button onclick="cadastrar()">Cadastrar novo usuário</button>
</div>
<div>
<br>
</div>
<p>Já possui conta?
<a href="login.html"> Entre com seu login</a></p>
<button onclick="darkMode()">Contraste</button>
<script src="index.js"> </script>
</div>
</body>
</html>