-
Notifications
You must be signed in to change notification settings - Fork 0
/
07_index.html
43 lines (40 loc) · 1.48 KB
/
07_index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulários</title>
</head>
<body>
<form action="processa.php" method="post">
<label for="nome">Nome:</label>
<input type="text" name="nome" id="nome">
<br>
<label for="email">E-mail:</label>
<input type="email" name="email" id="email">
<br>
<label for="senha">Senha:</label>
<input type="password" name="senha" id="senha">
<br>
<label for="informacao">Oculto:</label>
<input type="hidden" name="informacao" id="informacao" value="hidden_info">
<br>
<label for="select">Select:</label>
<select name="select" id="select">
<option value="1">Opção 1</option>
<option value="2">Opção 2</option>
</select>
<br>
<label for="radio">Radio:</label>
<input type="radio" name="radio" id="radio" value="radio_1">Valor 1<br>
<input type="radio" name="radio" id="radio" value="radio_2">Valor 2
<br>
<label for="checkbox">Checkbox:</label>
<input type="checkbox" name="checkbox" id="checkbox" value="checkbox_1">Valor 1<br>
<input type="checkbox" name="checkbox" id="checkbox" value="checkbox_2" checked>Valor 2
<br>
<input type="submit" value="Enviar">
</form>
</body>
</html>