-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (88 loc) · 4.08 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
<!DOCTYPE html>
<html lang="pt-BR">
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/global.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<head>
<meta charset="UTF-8">
<title>Eficaz | Página inicial</title>
</head>
<body>
<div class="logo">
<img src="img/logo-black.png">
</div>
<div class="container flex">
<navbar>
<button class="registerBtn btn navItem flex">
<img src="img/user.svg">
Cadastro
</img>
</button>
<button class="listBtn btn navItem flex">
<img src="img/users.svg">
Lista de cadastrados
</img>
</button>
</navbar>
<div class="box1 box flex column none">
<h1 class="register">CADASTRO</h1>
<form class="flex column forms">
<div class="flex row">
<div class="formsLS flex column">
<label for="seu_email">E-mail pessoal do candidato</label>
<input type="email" id="seu_email" placeholder="Ex: [email protected]" required>
<label for="email">E-mail</label>
<input type="email" id="email" placeholder="Ex: [email protected]" required>
<label for="rua">Rua</label>
<input type="text" id="rua" placeholder="Ex: Avenida Brasil" required>
<label for="complemento">Complemento</label>
<input type="text" id="complemento" placeholder="Ex: Bloco 2">
<label for="cep">CEP</label>
<input maxlength="9" type="text" id="cep" placeholder="Ex: 99999-999" required>
</div>
<div class="formsRS flex column">
<label for="nome">Nome completo</label>
<input type="text" id="nome" placeholder="Ex: Jorge Amaral Nogueira" required>
<label for="telefone">Telefone (DDD)</label>
<input maxlength="15" type="text" id="telefone" placeholder="Ex: (14) 99999-9999" required>
<label for="numero">N.º</label>
<input type="text" id="numero" placeholder="Ex: 1234" required>
<label for="bairro">Bairro</label>
<input type="text" id="bairro" placeholder="Ex: Jardim Paulista">
<div class="cityRow flex row spaceBetween">
<div class="cityField flex column">
<label for="cidade">Cidade</label>
<input type="text" id="cidade" placeholder="Ex: São Paulo" required>
</div>
<div class="ufField flex column">
<label for="uf">UF</label>
<input maxlength="2" type="text" id="uf" placeholder="Ex: SP" required>
</div>
</div>
</div>
</div>
<div class="submitContainer flex end">
<button class="btn btnSubmit" type="submit">Cadastrar</button>
</div>
</form>
</div>
<div class="box2 box flex column none">
<div class="flex column">
<h4 class="listTitle">Lista de Cadastrados</h4>
<h3 class="filters">FILTROS</h3>
<table>
<tr class="tableHeader">
<th>Nome</th>
<th>E-mail</th>
<th>Endereço completo</th>
<th>Telefone</th>
<th class="actions">Ação</th>
</tr>
</table>
</div>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>