-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtela4cadastro.html
59 lines (55 loc) · 1.65 KB
/
tela4cadastro.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
<!DOCTYPE html>
<html>
<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" type="text/css" href="assets/style.css">
<title>Tela 4 - Cadastro</title>
</head>
<body>
<div class="bloco1">
<div class="topo">
<div class="voltar">
<button type="submit">
<img src="assets/voltar.png" alt="Voltar" border="0">
</button>
</div>
</div>
</div>
<main class="form" style="padding-top: 23px;">
<div class="formLogo">
<img src="assets/logoParaFundoRosa.png" >
</div>
<form id="registration-form" >
<label for="name">Nome:</label>
<br>
<input type="text" id="name" name="name" required>
<br>
<label for="birthdate">Data de Nascimento:</label>
<br>
<input type="date" id="birthdate" name="birthdate" required>
<br>
<label for="cpf">CPF:</label>
<br>
<input type="text" id="cpf" name="cpf" required>
<br>
<label for="address">Endereço:</label>
<br>
<input type="text" id="address" name="address" required>
<br>
<label for="email">Email:</label>
<br>
<input type="email" id="email" name="email" required>
<br>
<label for="emergency-contact">Contato de Emergência:</label>
<br>
<input type="text" id="emergency-contact" name="emergency-contact" required>
<br>
</form>
</main>
<div class="bloco4">
<button type="submit">Cadastrar</button>
</div>
</body>
</html>