-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (95 loc) · 5.31 KB
/
Copy pathindex.html
File metadata and controls
114 lines (95 loc) · 5.31 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
<!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="shortcut icon" href="images/trybewarts-header-logo.svg" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<img src="images/trybewarts-header-logo.svg" alt="TrybeWarts" class="trybewarts-header-logo">
<h1 id="trybewarts-header-title" >Trybewarts</h1>
<form action=""class="trybewarts-login">
<input type="email" name="email" id="email" placeholder="Email">
<input type="password" name="password" id="password" placeholder="Senha">
<button id="login">Entrar</button>
</form>
</header>
<main>
<section id="form">
<h1 class="title-form">Formulário de Avaliação</h1>
<form action="" id="evaluation-form">
<div class="line-group">
<input type="text" id="input-name" placeholder="Nome">
<input type="text" id="input-lastname" placeholder="Sobrenome">
</div>
<div class="line-group">
<input type="email" id="input-email" placeholder="Email">
<select 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>
</div>
<hr>
<div>
<div id="div-family">
<label id="label-family" class="ask-label">Qual sua família?</label>
<label><input type="radio" name="family" value="Frontend" class="family"> Front-end</label>
<label><input type="radio" name="family" value="Backend" class="family"> Back-end</label>
<label><input type="radio" name="family" value="FullStack" class="family"> Full Stack</label>
</div>
<div id="div-tech">
<label id="label-content" class="ask-label">Qual conteúdo você está com mais vontade de aprender?</label>
<div class="techs">
<label><input type="checkbox" class="subject" value="HoFs"> Hofs</label>
<label><input type="checkbox" class="subject" value="Jest"> Jest</label>
<label><input type="checkbox" class="subject" value="Promises"> Promises</label>
</div>
<div class="techs">
<label><input type="checkbox" class="subject" value="React"> React</label>
<label><input type="checkbox" class="subject" value="SQL"> SQL</label>
<label><input type="checkbox" class="subject" value="Python"> Python</label>
</div>
</div>
</div>
<hr>
<div class="line-group">
<label id="label-rate">Como você avalia a Trybewarts?</label>
<label><input type="radio" name="rate" value="1" class="review">1</label>
<label><input type="radio" name="rate" value="2" class="review">2</label>
<label><input type="radio" name="rate" value="3" class="review">3</label>
<label><input type="radio" name="rate" value="4" class="review">4</label>
<label><input type="radio" name="rate" value="5" class="review">5</label>
<label><input type="radio" name="rate" value="6" class="review">6</label>
<label><input type="radio" name="rate" value="7" class="review">7</label>
<label><input type="radio" name="rate" value="8" class="review">8</label>
<label><input type="radio" name="rate" value="9" class="review">9</label>
<label><input type="radio" name="rate" value="10" class="review">10</label>
</div>
<hr>
<label class="textarea" >Deixe seu comentário:</label>
<textarea cols="30" rows="10" maxlength="500" id="textarea"></textarea>
<p id="counter">500</p>
<div>
<label id="label-infos"><input type="checkbox" name="" id="agreement"> Você concorda com o uso das informações acima?</label>
</div>
<button type="submit" id="submit-btn" disabled>Enviar</button>
</form>
</section>
<section id="form-data">
</section>
<section id="right">
<img src="images/trybewarts-colored.svg" alt="Brasão TrybeWarts" id="trybewarts-forms-logo">
</section>
</main>
<footer>
<p>Direitos reservados à Trybewarts©</p>
</footer>
<script src="script.js"></script>
</body>
</html>