-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (48 loc) · 1.41 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
<!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">
<title>CRUD</title>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class="container">
<div class="header">
<span>Cadastro de Funcionários</span>
<button onclick="openModal()" id="new">Incluir</i></button>
</div>
<div class="divTable">
<table>
<thead>
<tr>
<th>Nome</th>
<th>Função</th>
<th>Salário</th>
<th class="acao"></th>
<th class="acao"></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="modal-container">
<div class="modal">
<form>
<label for="m-nome">Nome</label>
<input id="m-nome" type="text" required />
<label for="m-funcao">Função</label>
<input id="m-funcao" type="text" required />
<label for="m-salario">Salário</label>
<input id="m-salario" type="text" />
<button id="btnSalvar">Salvar</button>
</form>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>