-
Notifications
You must be signed in to change notification settings - Fork 0
/
formcadastro.html
79 lines (70 loc) · 2.77 KB
/
formcadastro.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!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ário de cadastro</title>
</head>
<body>
<form>
<table>
<tr>
<th>Formulário de cadastro</th>
</tr>
<tr>
<td><label for="nome">Nome</label></td>
<td><input type="text" id="nome" name="nome" placeholder="Nome"></td>
</tr>
<tr>
<td><label for="sobrenome">Sobrenome</label></td>
<td><input type="text" name="sobrenome" id="sobrenome" placeholder="Sobrenome" required="true"></td>
</tr>
<tr>
<td><label for="endereço">Endereço</label></td>
<td><textarea rows="3" id="endereço" name="Endereço" required="true"></textarea>
<td>
</tr>
<tr>
<td><label for="disciplinas">Disciplinas:</label></td>
<td>
<input type="checkbox" />Programação <br />
<input type="checkbox" />Lógica<br />
<input type="checkbox" />Algoritmos<br />
<input type="checkbox" />Banco de Dados<br />
<input type="checkbox" />Mobile
</td>
</tr>
<tr>
<td><label for="genero">Gênero</label></td>
<td>
<input type="radio" name="s1" id="m" checked="true" /> <label>Masculino</label>
<input type="radio" name="s1" id="f" /> <label>Feminino</label>
<input type="radio" name="s1" id="n" /> <label>Não informar</label>
</td>
</tr>
<tr>
<td><label for="idade">Idade</label></td>
<td>
<select id="idade" name="idade">
<option value="">Selecionar</option>
<option value="c">Criança</option>
<option value="a">Adulto</option>
<option value="i">Idoso</option>
</select>
</td>
</tr>
<tr>
<td><label for="picture">Foto de perfil</label></td>
<td><input id="picture" type="file" name="picture" required="true" /></td>
</tr>
<tr>
<td colspan="2">
<input type="button" value="Cadastrar" name="cadastrar" id="cadastrar" />
<input type="reset" value="Limpar" name="limpar" id="cadastrar" />
</td>
</tr>
</table>
</form>
</body>
</html>