-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.html
46 lines (41 loc) · 1.4 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastre-se</title>
</head>
<body>
<header>
<img src="mundo dos games.png" width="160" height="160">
</header>
<nav>
<a href="site mundo dos games.html">Notícias</a>
<a href="sobre.html">Sobre</a>
<a href="cadastro.html">Cadastre-se</a>
<a href="contato.html">Contato</a>
</nav>
<aside>
<div class="caixa-pesquisa">
<h3 class="titulo">Busque aqui!</h3>
<input type="text" class="texto-pesquisa">
<button>Pesquisar </button>
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
</div>
</aside>
</head>
<div class="container">
<h2>Cadastro</h2>
<form action="processar_cadastro.php" method="post">
<label for="nome">Nome:</label>
<input type="text" id="nome" name="nome" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="senha">Senha:</label>
<input type="password" id="senha" name="senha" required>
<input type="submit" value="Cadastrar">
</form>
</div>
</body>
</html>