-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·97 lines (92 loc) · 4.94 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
<!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">
<link rel="stylesheet" href="style.css">
<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=Eczar:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<title>TrybeWarts</title>
</head>
<body>
<header class="header">
<img class="trybewarts-header-logo" src="images/trybewarts-header-logo.svg" alt="Logo">
<h1 id="trybewarts-header-title">Trybewarts</h1>
<form class="trybewarts-login">
<input type="text" name="email" placeholder="Email" class="input-email">
<input type="password" name="password" placeholder="Senha" class="input-senha">
<button class="btn-login">Entrar</button>
</form>
</header>
<main>
<form id="evaluation-form" action="">
<h2>Formulário de Avaliação</h2>
<div class="container-nome-sobrenome">
<input type="text" id="input-name" placeholder="Nome">
<input type="text" id="input-lastname" placeholder="Sobrenome">
</div>
<div class="container-email-casa">
<input type="text" id="input-email" placeholder="Email">
<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>
<hr>
<div class="container-familia-conteudo">
<div class="container-familia">
<label for="" id="label-family">Qual sua família?</label><br>
<input type="radio" name="family" value="Frontend" id="front">
<label for="front">Família Frontend</label><br>
<input type="radio" name="family" value="Backend" id="back">
<label for="back">Família Backend</label><br>
<input type="radio" name="family" value="FullStack" id="full">
<label for="full">Família FullStack</label>
</div>
<div class="container-conteudo">
<label id="label-content">Qual conteúdo você está com mais vontade de aprender?</label><br>
<input type="checkbox" class="subject" value="HoFs" id="hofs">
<label for="hofs">HoFs</label>
<input type="checkbox" class="subject" value="Jest" id="jest">
<label for="jest">Jest</label>
<input type="checkbox" class="subject" value="Promises" id="promises">
<label for="promises">Promises</label><br>
<input type="checkbox" class="subject" value="React" id="react">
<label for="react">React</label>
<input type="checkbox" class="subject" value="SQL" id="sql">
<label for="sql">SQL</label>
<input type="checkbox" class="subject" value="Python" id="python">
<label for="python">Python</label>
</div>
</div>
<hr>
<div class="label-rate">
<label for="" id="label-rate">Como você avalia a Trybewarts?</label>
<input type="radio" name="rate" value="1">1
<input type="radio" name="rate" value="2">2
<input type="radio" name="rate" value="3">3
<input type="radio" name="rate" value="4">4
<input type="radio" name="rate" value="5">5
<input type="radio" name="rate" value="6">6
<input type="radio" name="rate" value="7">7
<input type="radio" name="rate" value="8">8
<input type="radio" name="rate" value="9">9
<input type="radio" name="rate" value="10">10
</div>
<label class="textarea">Deixe seu comentário:</label>
<textarea maxlength="500" cols="10" rows="5"></textarea>
<span id="counter">500</span>
<label id="label-infos">Você concorda com o uso das informações acima? <input type="checkbox" id="agreement"></label>
<button id="submit-btn" type="submit">Enviar</button>
</form>
<img id="trybewarts-forms-logo" src="images/trybewarts-colored.svg" alt="Imagem">
</main>
<footer>Direitos reservados à Trybewarts©</footer>
<script src="script.js"></script>
</body>
</html>