-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://bootswatch.com/4/litera/bootstrap.min.css">
<script src="https://kit.fontawesome.com/1c1e4c9e62.js" crossorigin="anonymous"></script>
<title>Mi Lista de Libros</title>
</head>
<body>
<section class="container mt-5">
<h1 class="display-4 text-center text-primary text-bld font-weight-bold">Mis Libros <i class="fas fa-book"></i> </h1>
<div class="text-center alert alert-danger" id="Completa bien boludo" style="display:none">Completa bien boludo</div>
<div class="text-center alert alert-success" id="Quien te conoce" style="display:none">Quien te conoce</div>
<div class="text-center alert alert-success" id="Buena Kpo" style="display:none">Buena Kpo</div>
<form id="book-form">
<div class="form-group">
<label for="titulo">Titulo</label>
<input type="text" id="titulo" class="form-control">
</div>
<div class="form-group">
<label for="autor">Autor</label>
<input type="text" id="autor" class="form-control">
</div>
<div class="form-group">
<label for="isbn">ISBN</label>
<input type="text" id="isbn" class="form-control">
</div>
<input type="submit" value="Añadir Libro" class="btn btn-primary btn-block">
</form>
<table class="table table-striped mt-5">
<thead>
<tr>
<th>Titulo</th>
<th>Autor</th>
<th>ISBN#</th>
</tr>
</thead>
<tbody id="lista-libros"></tbody>
</table>
</section>
</body>
<script src="./app.js"></script>
</html>