-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (80 loc) · 3.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form class="button1">
<h4>
Cadastro de vaga
</h4>
<h1>
<label>Registre seu interesse</label>
</h1>
<fieldset>
<label for="name">Nome:<span class="obrigatorio">*</span></label>
<input type="text" name="nome" placeholder="Nome"/>
<label for="surname">Sobrenome:<span class="obrigatorio">*</span></label>
<input class="left" type="text" name="surname" placeholder="Sobrenome" />
<br>
<label for="idade">Email<span class="obrigatorio">*</span></label>
<input type="text" name="email" id="email"/>
<br/>
<label for="site">Website:<span class="obrigatorio">*</span></label>
<input type="text" name="site" placeholder="www.website.com" />
<br><br/>
<label for="portfolio">Seu portfolio:<span class="obrigatorio">*</span></label><br>
<input type="text" name="portfolio" />
<br><br>
<label for="cidade">Cidade:<span class="obrigatorio">*</span></label>
<select name="field_id_1928" id="field_id_0048">
<option value="1">Porto Alegre</option>
<option value="2">Gravataí</option>
<option value="3">Cachoeirinha</option>
<option value="3">Alabama</option>
<option value="4">Johannesburg</option>
</select>
<label for="idade">Idade:<span class="obrigatorio">*</span></label>
<select value="Idade" name="idade">
<option value="0-18">0 - 18</option>
<option value="18-24">18 - 24</option>
<option value="25-34">25 - 34</option>
<option value="35-50">35 - 50</option>
<option value="51+">51+</option>
</select>
<br style="font-size: 20px">
<br>
<label for="sexo">Sexo</label><br>
<span>Masculino</span>
<input type="radio" name="sexo" value="Masculino" checked="checked"/>
<span>Feminino</span>
<input type="radio" name="sexo" value="Masculino" />
<label for="campox" style="font-weight: italic; display: block;"><b>Religião:<span class="obrigatorio">*</span></b></label>
<select value="religiao" default="catolica" name="campox">
<option value="catolica">Catolica</option>
<option value="judaica">Judaica</option>
<option value="evangelica">Evangélica</option>
<option value="africanas" style="font-weight: italic;">Africanas</option>
<option value="outras">Outras</option>
</select>
<br><label for="linkedin">Linkedin:<span class="obrigatorio">*</span></label>
<input type="text" name="linkedin" />
<br>
<label for="outros">Outros</label>
<input type="email" disabled/>
<fieldset>
<input checked type="checkbox" name="checkbox1" />
<label for="checkbox2" class="button2">Receber notícias para próximas vagas</label>
</fieldset>
<br>
<input type="reset" value="Limpar Campos" />
<input type="button" value="Cancelar" />
<input type="button" value="Enviar" />
</fieldset>
</form>
<br><br>
<span class="obrigatorio">* Campos obrigatórios</span>
</body>
</html>