-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcadastro.html
More file actions
80 lines (71 loc) · 2.54 KB
/
Copy pathcadastro.html
File metadata and controls
80 lines (71 loc) · 2.54 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastro</title>
</head>
<body>
<header>
<h1>Sistema de cadastro</h1> <br>
<nav>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Cadastro</a></li>
<li><a href="">Contato</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Sobre o sistema:</h2>
<h4>O sistema serve pra ajudar ao cliente a ter uma experiencia melhor</h4>
<h4>ao realizar o cadastro.</h4>
<h4>O sistema pode ser acessado por qualquer pessoa sendo maior de 18 anos.</h4>
<br><br>
<h2>Formulario de cadastro:</h2><br>
<form action="#">
<h3>Campos obrigatorios*</h3> <br><br>
<label for="nomecompleto">Nome completo*</label><br>
<input type="text" required>
<br><br>
<label for="email">E-mail*</label><br>
<input type="text" required>
<br><br>
<label for="senha">Senha*</label><br>
<input type="text" required>
<br><br>
<label for="data">Data de nascimento*</label><br>
<input type="text" required>
<br><br>
<label for="telefone">Telefone*</label><br>
<input type="number" required>
<br><br>
<h2>Campos adicionais</h2><br>
<label for="genero">Gênero</label>
<select name="genero" id="genero" required>
<option value="">Selecione:</option>
<option value="masc">Masculino</option>
<option value="fem">femenino</option>
<option value="naobin">Nao binario</option>
<option value="pref">Prefiro nao dizer</option>
</select><br><br>
<label for="interesses">Interesses:</label><br>
<input type="checkbox">Tecnologia <br>
<input type="checkbox">Saude <br>
<input type="checkbox">Educacao <br>
<input type="checkbox">Cultura <br><br>
<label for="cidade">Cidade:</label>
<input type="text"> <br><br>
<label for="msg">Mensagem:</label>
<input type="text"> <br><br>
<input type="submit" value="Enviar cadastro" required>
</form>
</section>
</main>
<footer>
<h3>*2026 Sistema de cadastro.*</h3>
<h2>*Projeto de HTMl.*</h2>
</footer>
</body>
</html>