-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (58 loc) · 2.33 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
<!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">
<link href="https:.//fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&family=Ubuntu:wght@400;500;700&display=swap">
<link rel="stylesheet" href="./src/style.css">
<link rel="stylesheet" href="./src/button.css">
<link rel="stylesheet" href="./src/header.css">
<link rel="stylesheet" href="./src/titulos.css">
<link rel="stylesheet" href="./src/modal.css">
<script src="./main.js" defer></script>
<title>CRUD</title>
</head>
<body>
<header>
<h1 class="header">Cadastro de clientes</h1>
</header>
<main>
<button type="button" class="button blue" id="cadastrocliente">cadastrar</button>
<table id="tableClient" class="titulos">
<thead>
<tr>
<th>Nome</th>
<th>E-mail</th>
<th>Celular</th>
<th>CEP</th>
<th>Escolha</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div class="modal" id="modal">
<div class="modal-content">
<header class="modal-header">
<h2>cadastrar 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 cliente" required>
<input type="email" id="email" class="modal-field" placeholder="E-mail" required>
<input type="text" id="celular" class="modal-field" placeholder="Celular" required>
<input type="text" id="cep" class="modal-field" placeholder="CEP" required>
</form>
<footer class="modal-footer">
<button id="salvar" class="button green">salvar</button>
<button id="cancelar" class="button blue">cancelar</button>
</footer>
</div>
</div>
</main>
<footer>
Projeto de Maxmiliano Souza
</footer>
</body>
</html>