-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (57 loc) · 2.4 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
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/button.css">
<link rel="stylesheet" href="css/records.css">
<link rel="stylesheet" href="css/modal.css">
<title>Cadastro de Clientes</title>
</head>
<body>
<header>
<h1 class="header-title">Cadastro de Clientes</h1>
</header>
<main>
<button type="button" class="button blue mobile" id="registerCustomers">Cadastrar Cliente</button>
<table id="table-client" class="records">
<thead>
<tr>
<th>Nome</th>
<th>E-mail</th>
<th>Celular</th>
<th>Cidade</th>
<th>Ação</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div class="modal" id="modal">
<div class="modal-content">
<header class="modal-header">
<h2>Novo Cliente</h2>
<span class="modal-close" id="modalClose">✖</span>
</header>
<form id="form" class="modal-form">
<input type="text" id="name" data-index="new" class="modal-field" placeholder="Nome do Cliente"
required>
<input type="email" id="email" data-index="new" class="modal-field" placeholder="e-mail do Cliente" required>
<input type="text" id="cellphone" class="modal-field" placeholder="Celular do Cliente" required>
<input type="text" id="city" class="modal-field" placeholder="Cidade do Cliente" required>
</form>
<footer class="modal-footer">
<button id="save" class="button green">Salvar</button>
<button id="cancel" class="button blue">Cancelar</button>
</footer>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>