-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprimeiro-form.html
More file actions
76 lines (60 loc) · 2.11 KB
/
Copy pathprimeiro-form.html
File metadata and controls
76 lines (60 loc) · 2.11 KB
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
<!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">
<title>Cadastro da liga dos astronautas</title>
</head>
<body>
<h3>Cadastro da liga dos astronautas</h3>
<form action>
<div>
<label for="name">Nome:</label>
<input type="text" id="name" name="name" />
</div>
<div>
<label for="email">Email:</label>
<input type="email" name="email" id="email" /> -
<label for="password">Password:</label>
<input type="password" name="password" id="password" />
</div>
<div>
<label for="birthday">Data de nascimento:</label>
<input type="date" name="birthday" id="birthday" /> -
<label for="photo">Foto:</label>
<input type="file" name="photo" id="photo" />
</div>
<div>
<label for="nationality">Nacionalidade:</label>
<select name="nationality" id="nationality">
<option value="russian">Russa</option>
<option value="american">Americana</option>
<option value="brasilian">Brasileira</option>
</select> -
Genero:
<label for="female">F</label>
<input type="radio" name="gender" id="female" value="female" />
<label for="male">M</label>
<input type="radio" name="gender" id="male" value="male" />
</div>
<div>
Suas principais qualidades:
<label for="int">Inteligência</label>
<input type="checkbox" name="int" id="int" /> |
<label for="res">Resiliência</label>
<input type="checkbox" name="res" id="res" /> |
<label for="physic">Preparo físico</label>
<input type="checkbox" name="physic" id="physic" /> |
<label for="edu">Educação</label>
<input type="checkbox" name="edu" id="edu" />
</div>
<div>
<textarea name="description" id="description"></textarea>
</div>
<div>
<input type="submit" value="Criar" />
</div>
</form>
</body>
</html>