-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathregistro.html
148 lines (135 loc) · 6.02 KB
/
registro.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<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>Shoes</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;800&display=swap');
</style>
<link rel="stylesheet" href="./public/css/styles.css">
<link rel="stylesheet" href="./public/css/resgistro.css">
</head>
<body>
<header>
<img src="./public/img/logo-color.png" alt="Shoes">
<nav>
<ul>
<li><a href="#">Todos os Produtos</a></li>
<li><a href="#">Coleções</a></li>
<li><a href="#">Outlet</a></li>
</ul>
</nav>
</header>
<section class="destaque">
asldkjalsdkj lkadjs ldaksjdl askdj asldkj
<span>x</span>
</section>
<main class="container">
<section>
<h2>Faça parte do nosso time</h2>
<form action="endereco/para/onde/o/form/vai" method="get">
<label for="nome">
<span>Nome</span>
<input id="nome" type="text" name="nomeDoCandidato" placeholder="Digite o seu nome aqui">
</label>
<label>
<span>E-mail</span>
<input type="email" name="email" placeholder="Digite seu e-mail">
</label>
<input type="hidden" name="visitouPagina" value="1">
<label>
<span>Telefone</span>
<input type="tel" name="telefone" id="telefone">
</label>
<label>
<span>Departamento</span>
<select name="departamento" id="departamento">
<option selected disabled>Selecione um departamento</option>
<optgroup label="Departamentos bons...">
<option value="prog">Programação</option>
<option value="data">Ciência de dados</option>
</optgroup>
<optgroup label="Departamentos não bons...">
<option value="vend">Vendas</option>
<option value="mark">Marketing</option>
</optgroup>
</select>
</label>
<div>
<h3>Disponibilidade</h3>
<label>
<input type="checkbox" name="disp_integral">
<i></i>
<span>Integral (8h)</span>
</label>
<label>
<input type="checkbox" name="disp_meioperiodo" id="disp_meioperiodo">
<i></i>
<span>Meio Período (4h)</span>
</label>
<label>
<input type="checkbox" name="disp_freela" checked disabled>
<i></i>
<span>Freelancer (burro de carga)</span>
</label>
</div>
<div>
<h3>Forma preferencial de contato</h3>
<label>
<input type="radio" value="whatsapp" name="formaDeContato">
<span>Whats App</span>
</label>
<label>
<input type="radio" value="email" name="formaDeContato">
<span>E-mail</span>
</label>
<label>
<input type="radio" value="telefone" name="formaDeContato">
<span>Telefone</span>
</label>
<label>
<input type="file" name="arquivoCurriculo">
<span>Arquivo PDF com seu currículo</span>
</label>
</div>
<button type="submit">
Enviar
</button>
</form>
</section>
<section>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere nesciunt, eos inventore minus unde voluptas impedit sint eaque consequuntur. Tempore, aliquam atque? Nihil harum cumque deleniti. Suscipit explicabo maxime tenetur.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere nesciunt, eos inventore minus unde voluptas impedit sint eaque consequuntur. Tempore, aliquam atque? Nihil harum cumque deleniti. Suscipit explicabo maxime tenetur.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere nesciunt, eos inventore minus unde voluptas impedit sint eaque consequuntur. Tempore, aliquam atque? Nihil harum cumque deleniti. Suscipit explicabo maxime tenetur.</p>
</section>
</main>
<footer>
<section id="Contatos">
<img src="./public/img/logo-white.png" alt="Shoes">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptate molestiae, aspernatur porro sapiente quasi numquam distinctio libero corporis</p>
</section>
<section id="Links">
<article class="categorias">
<ul>
<li><a href="#">Lalala</a></li>
<li><a href="#">Lalala</a></li>
<li><a href="#">Lalala</a></li>
<li><a href="#">Lalala</a></li>
<li><a href="#">Lalala</a></li>
</ul>
</article>
<article class="institucional">
<ul>
<li><a href="#">Lalala</a></li>
<li><a href="#">Lalala</a></li>
<li><a href="#">Lalala</a></li>
<li><a href="#">Lalala</a></li>
<li><a href="#">Lalala</a></li>
</ul>
</article>
</section>
</footer>
</body>
</html>