-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (56 loc) · 2.47 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="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="shortcut icon" href="./src/imagens/Cadastro.png" type="image/x-icon">
<link rel="stylesheet" href="./src/css/botao.css">
<link rel="stylesheet" href="./src/css/estilos.css">
<link rel="stylesheet" href="./src/css/modal.css">
<link rel="stylesheet" href="./src/css/records.css">
<script src="./src/js/interacao.js" defer></script>
<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="cadastrarCliente">Cadastrar Cliente</button>
<table id="tableClient" class="records">
<thead>
<tr>
<th>Nome</th>
<th>E-mail</th>
<th>Celular</th>
<th>Telefone</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="nome" data-index="new" class="modal-field" placeholder="Nome"
required>
<input type="email" id="email" class="modal-field" placeholder="E-mail" required>
<input type="text" id="celular" class="modal-field" placeholder="Telefone" required>
<input type="text" id="cidade" class="modal-field" placeholder="Cidade" required>
</form>
<footer class="modal-footer">
<img width="50px" height="50px" class="imagem-cadastro" src="./src/imagens/Cadastro.png" alt="Imagem de cadastro.">
<button id="salvar" class="button green">Salvar</button>
<button id="cancelar" class="button blue">Cancelar</button>
</footer>
</div>
</div>
</main>
</body>
</html>