-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatricula.html
104 lines (104 loc) · 3.37 KB
/
matricula.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
104
<!DOCTYPE html>
<html>
<link href="./css/site.css" rel="stylesheet" type="text/css">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<basefont color="red" size="5" face="liberation" />
</head>
<body id="matricula">
<nav>
<header>
<img class="imgLogo" src="./img/PontaLogo.png">
</header>
<nav>
<ul class="menu">
<li><a href="./academia.html" target="_blank">Academia</a></li>
<li><a href="./turmas.html" target="_blank">Turmas</a></li>
<li><a href="./cursos.html" target="_blank">Cursos</a></li>
<li><a href="./eventos.html" target="_blank">Eventos</a></li>
<li><a href="./matricula.html" target="_blank">Matrícula</a></li>
</ul>
</nav>
</nav>
<section>
<div class="matricula">
<form>
<div>
<fieldset>
<legend>Dados do Aluno</legend>
<div class="linha">
<label for="nome">Nome:</label>
<input class="maior" type="text" name="nome"/>
</div>
<div class="linha2">
<div class="child">
<div>
<label for="telefone">Telefone:</label>
<input class="medio" type="text" name="telefone"/>
</div>
<div class="linha">
<label for="celular">Celular:</label>
<input class="medio" type="text" name="celular"/>
</div>
</div>
<div class="child">
<fieldset class="sexo">
<legend>Sexo</legend>
<input type="radio" name="sexo" value="masc">Masculino</input><br>
<input type="radio" name="sexo" value="fem">Feminino</input>
</fieldset>
</div>
</div>
<div class="linha">
<label for="curso">Cursos:</label>
<input type="checkbox" name="curso" value="ballet">Ballet</input>
<input type="checkbox" name="curso" value="jazz">Jazz</input>
<input type="checkbox" name="curso" value="sapateado">Sapateado</input>
</div>
<div class="linha">
<label >Nascimento:</label>
<input class="menor" type="text" name="dia"/>
<span>/</span>
<input class="menor" type="text" name="mes"/>
<span>/</span>
<input class="pequeno" type="text" name="ano"/>
</div>
<div class="linha">
<label for="turma">Turma:</label>
<input class="maior" type="text" name="turma"/>
</div>
</fieldset>
</div>
<div>
<fieldset>
<legend>Responsável Financeiro</legend>
<div class="linha2">
<div class="left">
<label for="cpf">Cpf:</label>
<input class="medio" type="text" name="cpf"/>
</div>
<div class="right">
<input type="checkbox" name="proprio" value="proprio">Próprio Aluno</input>
</div>
<div style="clear: both;"></div>
</div>
<div class="linha">
<label for="nomeresponsavel">Nome:</label>
<input class="maior" type="text" name="nomeresponsavel"/>
</div>
</fieldset>
</div>
<div class="right">
<input type="submit" value="Enviar"/>
<input type="reset" value="Limpar"/>
</div>
</form>
</div>
</section>
<footer class="ender">
<div>Av. Fred Ataire 234</div>
<div>Tel: (21) 1234-5678</div>
<div><a href="mailto:[email protected]" target="_top">[email protected]/div>
</footer>
</body>
<html>