-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.html
33 lines (32 loc) · 1.58 KB
/
cadastro.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
<!--- Cadastro de novo usuario -->
<html lang="pt-br">
<head>
<meta charset='utf-8'>
<title>Cadastro</title>
<link rel="stylesheet" href="css/cadastro-usuario.css">
</head>
<body>
<section id="interface">
<h1>Cadastro de novo usuario </h1>
<form method="POST" action="cadastro.php" id="form">
<fieldset><legend>identificação do usuario</legend>
<p>
<label for="cName">nome:</label><input name="name" id="cName" type="text" placeholder="Nome completo" required></br>
<label for="cMail">E-mail:</label><input name="email" id="cMail" type="email" placeholder="Seu melhor e-mail" required></br>
<label for="cSenha">Senha:</label><input name="senha" id="cSenha" type="password" placeholder="Crie aqui sua senha" required></br>
<label for="cIdade">Data de nascimento:</label><input name="idade" id="cIdade" type="date" required></br>
<label for="cNum">Telefone:</label><input type="number" name="num" id="cNum" placeholder="Número do seu celular" required>
</p>
</fieldset>
<fieldset><legend>Gênero:</legend>
<p>
<input name="sexo" id="cMasc" type="radio"><label for="cMasc">Masculino</label></br>
<input name="sexo" id="cFem" type="radio"><label for="cFem">Feminino</label></br>
<input name="sexo" id="cInd" type="radio"><label for="cInd"> Prefiro não dizer</label>
</p>
</fieldset>
<input type="submit" value="cadastrar" id="cadastrar" name="cadastrar">
</form>
</section>
</body>
</html>