-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform002.html
More file actions
26 lines (24 loc) · 755 Bytes
/
form002.html
File metadata and controls
26 lines (24 loc) · 755 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulário</title>
</head>
<body>
<h1>Teste de formulário</h1>
<form action="cadastro.php" method="post"></form>
<fieldset>
<legend>Cadastro obrigatório</legend>
<p>
<label for="iusu">Usuário:</label>
<input type="text" name="usu" id="iusu" required minlength="8">
</p>
<p>
<label for="isen">Senha:</label>
<input type="password" name="sen" id="isen" required minlength="10" placeholder="Min. 10 caracteres">
</p>
</fieldset><br>
<input type="button" value="Enviar">
</body>
</html>