-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (53 loc) · 1.97 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
<!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>Cadastro de Produtos</title>
<!--Linkando o ícone para a página-->
<!-- <link rel="icon" href="favicon.ico" type="image/x-icon"> -->
<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>Cadstro de Produtos</span>
<button onclick="openModal()" id="new"><i>Incluir</i></button>
</div>
<!--Tabela de itens-->
<div class="divTable">
<table>
<thead>
<tr>
<th>Produtos</th>
<th>Tipo</th>
<th>Preço</th>
<th class="acao">Editar</th>
<th class="acao">Excluir</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<!--Menu Editar-->
<div class="modal-container">
<div class="modal">
<form>
<label for="m-produto">Produto</label>
<input id="m-produto" type="text" required placeholder="Digite o produto">
<label for="m-tipo">Tipo</label>
<input id="m-tipo" type="text" required placeholder="Informe o tipo">
<label for="m-preco">Preço</label>
<input id="m-preco" type="number" required placeholder="Informe o preço">
<button id="btnSalvar">Salvar</button>
<label for="m-ed">By Gamer Extremo BR</label>
</form>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>