-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (63 loc) · 2.81 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
<!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">
<link rel="stylesheet" href="style.css">
<title>Acrescimo Salarial</title>
</head>
<body>
<form method="POST" action="./calculo.php">
<h1>Calcule seu acréscimo</h1>
<div class="containerPergunta">
<label for="nome"> Nome completo:</label>
<input id="nome" name="nome" required/>
</div>
<div class="containerPergunta">
<label for="salario-antigo"> Salário (R$):</label>
<input type="number" id="salario-antigo" name="salario-antigo" required/>
</div>
<div class="containerRadio">
<table>
<thead>
<tr>
<th><label>Gênero:</label></th>
</tr>
</thead>
<tbody>
<tr>
<td><label for="masculino">Masculino:</label></td>
<td><input type="radio" id="masculino" name="genero-sexual" value="masculino" required/></td>
</tr>
<tr>
<td><label for="feminino">Feminino:</label></td>
<td><input type="radio" id="feminino" name="genero-sexual" value="feminino" required/></td>
</tr>
<tr>
<td><label for="outro">Outro:</label></td>
<td><input type="radio" id="outro" name="genero-sexual" value="outro" required/></td>
</tr>
</tbody>
</table>
</div>
<div class="cargosList">
<label for="cargo"> Cargo:</label>
<select id="cargo" name="cargo" required>
<option value="">Selecione um item da lista.</option>
<option value="Investidor Especializado">Investidor Especializado</option>
<option value="Desenvolvedor de áreas comerciais">Desenvolvedor de áreas comerciais</option>
<option value="Engenheiro das compotências híbridas">Engenheiro das compotências híbridas</option>
<option value="Comunicadora das áreas transversais">Comunicadora das áreas transversais</option>
<option value="Gerente Especializado em telecomunicação">Gerente Especializado em telecomunicação</option>
<option value="Analista de sistemas">Analista de sistemas</option>
</select>
</div>
<div class="button-container">
<button>
Calcular
</button>
</div>
</form>
</body>
</html>