-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (94 loc) · 3.67 KB
/
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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="pt-BR">
<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">
<link rel="stylesheet" href="/style.css">
<title>Formulário Simples</title>
</head>
<body>
<div class="container">
<div class="titulo">
<h1>Escola Virtual</h1>
<h2>Formulário de Pré-Matrícula</h2>
</div>
<div class="container-in">
Dados Pessoais:
<form method="post" action="">
<label>
Nome do Aluno: <br/>
<input type="text" name="name" placeholder="Nome Completo" autocomplete="off"/><br/>
</label>
<label>
Nascimento: <br/>
<input type="date" name="born-date" required/><br/>
</label>
<label>
Nome da Mãe: <br/>
<input type="text" name="name-mother" placeholder="Nome Completo" autocomplete="off"/><br/>
</label>
<label>
Nome do Pai: <br/>
<input type="text" name="name-father" placeholder="Nome Completo" autocomplete="off"/><br/>
</label>
<label>
Telefone: <br/>
<input type="tel" name="tel" autocomplete="off" size="11" maxlength="11" placeholder="(22) 9 9999-9999"/><br/>
</label>
<label>
E-mail: <br/>
<input type="email" name="usuario" placeholder="[email protected]"/>
</label>
</form>
</div>
<div class="container-in2">
Informações de Matrícula:
<form method="post" action="">
<div>
<label>
Série: <br/>
<select>
<optgroup>
<option value="Pré">Pré-Escolar</option>
<option value="Pré1">Pré-1</option>
<option value="Pré2">Pré-2</option>
</optgroup>
</select>
</label>
</div>
<div>
Turno: <br/>
<label>
<input type="radio" name="turno"> Manhã <br/>
</label>
<label>
<input type="radio" name="turno"> Tarde
</label>
</div>
<div>
Atividades Extracurriculares: <br/>
<label>
<input type="checkbox" name="info"/> Informática<br/>
</label>
<label>
<input type="checkbox" name="music"/> Música<br/>
</label>
<label>
<input type="checkbox" name="danca"/> Balet<br/>
</label>
<label>
<input type="checkbox" name="paint"/> Pintura<br/>
</label>
<label>
<input type="checkbox" name="fight"/> Judô<br/>
</label>
<label>
<input type="checkbox" name="fute"/> Futebol<br/>
</label>
</div>
</form>
</div>
</div>
</body>
</html>