-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 1.04 KB
/
index.html
File metadata and controls
48 lines (48 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Cadastro AJAX</title>
<style>
.mensagem {
font-weight: bold;
margin-top: 10px; /* cite: 5, 9 */
}
.erro {
color: red;
}
.sucesso {
color: green; /* cite: 6, 10 */
}
table {
margin-top: 20px;
width: 100%;
border-collapse: collapse; /* cite: 7, 11 */
}
th, td {
border: 1px solid #ccc;
padding: 8px; /* cite: 8, 12 */
}
</style>
</head>
<body>
<h2>Cadastro</h2>
<form id="formCadastro">
<input type="text" id="nome" placeholder="Nome" required />
<input type="email" id="email" placeholder="Email" required />
<button type="submit">Cadastrar</button>
</form>
<div id="mensagem" class="mensagem"></div>
<table>
<thead>
<tr>
<th>Nome</th>
<th>Email</th>
<th>Ações</th>
</tr>
</thead>
<tbody id="tabelaCorpo"></tbody>
</table>
<script src="script.js"></script>
</body>
</html>