-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (69 loc) · 2.17 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
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Gerenciador de Livros</title>
<link rel="stylesheet" href="style.css">
<style>
table {
border-collapse: collapse;
}
table,
th,
td {
border: 1px solid black;
padding: 5px;
}
.container {
display: flex;
}
.list-container {
flex: 1;
}
</style>
</head>
<body>
<div>
<h1 class="title"><strong>Gerenciador de Livros</strong></h1>
</div>
<div class="container">
<div class="form-container">
<form id="book-form">
<h2 class="cadastrar">Cadastrar Livro</h2>
<label for="title">Título:</label>
<input type="text" id="title" required><br><br>
<label for="author">Autor:</label>
<input type="text" id="author" required><br><br>
<label for="publication-date">Publicação:</label>
<input type="date" id="publication-date" required><br><br>
<input type="submit" value="Cadastrar">
</form>
</div>
<div class="list-container">
<h2 class="listagem">Listagem de Livros</h2>
<p class="order">Ordenar por:
<select id="sort-by">
<option value="title">Título</option>
<option value="publication-date">Data de Publicação</option>
</select>
</p>
<div id="book-list-container">
<table id="book-list">
<thead>
<tr>
<th>Título</th>
<th>Autor</th>
<th>Data de Publicação</th>
<th>Ações</th>
</tr>
</thead>
<tbody id="book-list-body"></tbody>
</table>
<p id="null">Não há livros na biblioteca...
</p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>