-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tela cadastro.html
34 lines (34 loc) · 1.01 KB
/
Tela 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastro - App Vendas</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Cadastro</h1>
<form>
<div class="campo">
<label for="nome">Nome:</label>
<input type="text" id="nome" name="nome" required>
</div>
<div class="campo">
<label for="email">E-mail:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="campo">
<label for="senha">Senha:</label>
<input type="password" id="senha" name="senha" required>
</div>
<div class="campo">
<label for="confirmar-senha">Confirmar Senha:</label>
<input type="password" id="confirmar-senha" name="confirmar-senha" required>
</div>
<button>Cadastrar</button>
<p>Já tem conta? <a href="#">Login</a></p>
</form>
</div>
</body>
</html>