-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (144 loc) · 5.2 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
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
<!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>Document</title>
<link rel="stylesheet" href="style.css">
<script src="./script.js" defer></script>
<link href="https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<img class="trybewarts-header-logo" src="images/trybewarts-header-logo.svg">
<h1 id="trybewarts-header-title">Trybewarts</h1>
<form class="trybewarts-login">
<section class="login">
<div>
<input name="email" type="email" id="email" placeholder="Email">
</div>
<div>
<input name="password" type="password" id="password" placeholder="Senha">
</div>
<div>
<button class="botao-login">Entrar</button>
</div>
</section>
</form>
</header>
<main>
<form action="" id="evaluation-form">
<div>
<div class="titulo-form">
<h2>Fomulário de Avaliação</h2>
</div>
<section class="informacoes-pessoais">
<div>
<input id="input-name" placeholder="Nome" type="text">
<input id="input-lastname" placeholder="Sobrenome" type="text">
</div>
<div>
<input id="input-email" placeholder="Email" type="text">
<label for="house">Casa:</label>
<select name="" id="house">
<option value="Gitnória" id="gitnoria-house">Gitnória</option>
<option value="Reactpuff" id="reactpuff-house">Reactpuff</option>
<option value="Corvinode" id="corvinode-house">Corvinode</option>
<option value="Pytherina" id="pytherina-house">Pytherina</option>
</select>
</div>
</div>
</section>
<hr>
<div id="conteudo">
<div class="family">
<label for="" id="label-family">Qual sua família?</label>
<label for="familia">
<input id="familia" type="radio" name="family" value="Frontend"> Frontend
</label>
<label for="familia">
<input id="familia" type="radio" name="family" value="Backend"> Backend
</label>
<label for="familia">
<input id="familia" type="radio" name="family" value="FullStack"> Fullstack
</label>
</div>
<div class="contents">
<label for="" id="label-content">Qual conteúdo você está com mais vontade de aprender?</label>
<div>
<label for="subject">
<input class="subject" type="checkbox" name="" value="HoFs"> HoFs
</label>
<label for="subject">
<input class="subject" type="checkbox" name="" value="Jest"> Jest
</label>
<label for="subject">
<input class="subject" type="checkbox" name="" value="Promises"> Promises
</label>
</div>
<div>
<label for="subject">
<input class="subject" type="checkbox" name="" value="React"> React
</label>
<label for="subject">
<input class="subject" type="checkbox" name="" value="SQL"> SQL
</label>
<label for="subject">
<input class="subject" type="checkbox" name="" value="Python"> Python
</label>
</div>
</div>
</div>
<hr>
<div>
<label for="" id="label-rate">Como você avalia a Trybewarts?</label>
<label for="">
<input type="radio" name="rate" value="1">1
</label>
<label for="">
<input type="radio" name="rate" value="2">2
</label>
<label for="">
<input type="radio" name="rate" value="3">3
</label>
<label for="">
<input type="radio" name="rate" value="4">4
</label>
<label for="">
<input type="radio" name="rate" value="5">5
</label>
<label for="">
<input type="radio" name="rate" value="6">6
</label>
<label for="">
<input type="radio" name="rate" value="7">7
</label>
<label for="">
<input type="radio" name="rate" value="8">8
</label>
<label for="">
<input type="radio" name="rate" value="9">9
</label>
<label for="">
<input type="radio" name="rate" value="10">10
</label>
</div>
<div>
<label for="" class="textarea">Deixe seu comentário:</label>
</div>
<div id="counter-box">
<textarea name="" id="textarea" cols="30" rows="10" maxlength="500"></textarea>
<p id="counter"></p>
</div>
<label for="" id="label-infos">Você concorda com o uso das informações acima?
<input type="checkbox" id="agreement">
</label>
<button type="submit" id="submit-btn">Enviar</button>
</form>
<img id="trybewarts-forms-logo" src="images/trybewarts-colored.svg" alt="">
</main>
<footer>Direitos reservados à Trybewarts©</footer>
<!-- inclusão para realização do último PR -->
</body>
</html>