forked from mateuspim/rolling-tetris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.html
48 lines (43 loc) · 1.95 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="pt">
<head>
<title>Rolling Tetris Cadastro | Grupo 06</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/mystyle.css"/>
<link rel="icon" href="imagens/tetris.png">
</head>
<body>
<header>
<div class="topnav">
<a href="login.html">Login</a>
<a class = "active" href="cadastro.html">Cadastro</a>
</div>
</header>
<section class="login">
<div class="login">
<h2>Realizar Cadastro</h2>
<form style="display: inline" action="jogar.html" method="POST">
<label for="nome">Nome Completo</label><br/>
<input type="text" id="nome" name="nome" placeholder="Digite seu nome completo"><br/>
<label for="data">Data de Nascimento</label><br/>
<input style="width:50%" type="date" id="data" name="data"><br/>
<label for="cpf">CPF</label><br/>
<input type="text" id="cpf" name="cpf" placeholder="Digite seu CPF"><br/>
<label for="telefone">Telefone</label><br/>
<input type="text" id="telefone" name="telefone" placeholder="Digite seu telefone"><br/>
<label for="email">Email</label><br/>
<input type="email" id="email" name="email" placeholder="Digite seu email"><br/>
<label for="usuario">Nome de Usuário</label><br/>
<input type="text" id="usuario" name="usuario" placeholder="Digite seu nome de usuário"><br/>
<label for="senha">Senha</label><br/>
<input type="password" id="senha" name="senha" placeholder="Digite sua senha"><br/>
<button type="submit" class="buttonmenor">Cadastrar</button>
</form>
<br>Ja tem conta? <a href="login.html" class="cadlog">Login</a>
</div>
</section>
<footer id="credito">
Grupo 6
</footer>
</body>
</html>