-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.HTML
More file actions
28 lines (24 loc) · 770 Bytes
/
index.HTML
File metadata and controls
28 lines (24 loc) · 770 Bytes
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulários no HTML</title>
</head>
<body>
<h1>Cadastro de Usuário</h1>
<!-- Formulário simples -->
<form action="#" method="post">
<label for="nome">Nome:</label>
<input type="text" id="nome" name="nome" required>
<br><br>
<label for="email">E-mail:</label>
<input type="email" id="email" name="email" required>
<br><br>
<label for="senha">Senha:</label>
<input type="password" id="senha" name="senha" required>
<br><br>
<button type="submit">Enviar</button>
</form>
</body>
</html>