-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
249 lines (242 loc) · 7.73 KB
/
index.html
File metadata and controls
249 lines (242 loc) · 7.73 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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<!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>Trybewarts</title>
<link rel="stylesheet" href="style.css" />
<link
rel="shortcut icon"
href="images/trybewarts-favicon.png"
type="image/x-icon"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header class="header">
<img
src="images/trybewarts-header-logo.svg"
alt=""
class="trybewarts-header-logo"
/>
<h1 id="trybewarts-header-title">Trybewarts</h1>
<section class="login-container">
<form class="trybewarts-login" action="" method="get">
<input type="text" name="email" placeholder="Email" id="inp-mail" />
<input
type="text"
name="password"
placeholder="Senha"
id="inp-pass"
/>
<button id="btn-login">Entrar</button>
</form>
</section>
</header>
<main>
<section class="container">
<h2>Formulário de Avaliação</h2>
<form id="evaluation-form" action="" method="post">
<section>
<input required id="input-name" type="text" placeholder="Nome" />
<input
required
id="input-lastname"
type="text"
placeholder="Sobrenome"
/>
</section>
<section class="sec-two">
<input required id="input-email" type="text" placeholder="Email" />
<label for="house">Casa: </label>
<select name="house" id="house">
<option id="gitnoria-house" value="Gitnória">Gitnória</option>
<option id="reactpuff-house" value="Reactpuff">Reactpuff</option>
<option id="corvinode-house" value="Corvinode">Corvinode</option>
<option id="pytherina-house" value="Pytherina">Pytherina</option>
</select>
</section>
<hr />
<section class="c-div">
<section class="c-left">
<div>
<label id="label-family" for="family">Qual sua família?</label>
<label for="frontEnd"
><input
type="radio"
id="frontEnd"
name="family"
value="Frontend"
/>Família Frontend</label
>
<label for="backEnd"
><input
type="radio"
id="backEnd"
name="family"
value="Backend"
/>Família Backend</label
>
<label for="fullStack"
><input
type="radio"
id="fullStack"
name="family"
value="FullStack"
/>Família FullStack</label
>
</div>
</section>
<section class="c-right">
<label id="label-content" for="label-content"
>Qual conteúdo você está com mais vontade de aprender?</label
>
<div>
<label for="hofs"
><input
id="hofs"
type="checkbox"
value="HoFs"
class="subject"
/>HoFs</label
>
<label for="jest"
><input
id="jest"
type="checkbox"
value="Jest"
class="subject"
/>Jest</label
>
<label for="promises"
><input
id="promises"
type="checkbox"
value="Promises"
class="subject"
/>Promises</label
>
<label for="react"
><input
id="react"
type="checkbox"
value="React"
class="subject"
/>React</label
>
<label for="sql"
><input
id="sql"
type="checkbox"
value="SQL"
class="subject"
/>SQL</label
>
<label for="python"
><input
id="python"
type="checkbox"
value="Python"
class="subject"
/>Python</label
>
</div>
</section>
</section>
<hr />
<section>
<label id="label-rate" for="rate"
>Como você avalia a Trybewarts?</label
>
<label for="rate1"
><input
required
id="rate1"
type="radio"
name="rate"
value="1"
/>1</label
>
<label for="rate2"
><input id="rate2" type="radio" name="rate" value="2" />2</label
>
<label for="rate3"
><input id="rate3" type="radio" name="rate" value="3" />3</label
>
<label for="rate4"
><input id="rate4" type="radio" name="rate" value="4" />4</label
>
<label for="rate5"
><input id="rate5" type="radio" name="rate" value="5" />5</label
>
<label for="rate6"
><input id="rate6" type="radio" name="rate" value="6" />6</label
>
<label for="rate7"
><input id="rate7" type="radio" name="rate" value="7" />7</label
>
<label for="rate8"
><input id="rate8" type="radio" name="rate" value="8" />8</label
>
<label for="rate9"
><input id="rate9" type="radio" name="rate" value="9" />9</label
>
<label for="rate10"
><input
id="rate10"
type="radio"
name="rate"
value="10"
/>10</label
>
</section>
<section class="comment">
<div>
<label class="textarea" for="textarea"
>Deixe seu comentário:</label
>
</div>
<div class="text-container">
<textarea
name="textarea"
id="textarea"
cols="25"
rows="8"
maxlength="500"
></textarea>
<span id="counter">500</span>
</div>
</section>
<section>
<label id="label-infos" for="agreement"
>Você concorda com o uso das informações acima?<input
required
type="checkbox"
name=""
id="agreement"
/>
</label>
</section>
<button disabled id="submit-btn" type="submit">Enviar</button>
</form>
</section>
<aside>
<img
id="trybewarts-forms-logo"
src="images/trybewarts-colored.svg"
alt=""
/>
</aside>
</main>
<footer>
<p>Direitos reservados à Trybewarts©</p>
</footer>
</body>
<script src="script.js"></script>
</html>