-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (58 loc) · 1.99 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Book-Shop</title>
<link href="https://fonts.googleapis.com/css?family=Lobster&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" />
<link rel="stylesheet" href="lib/bootstrap/bootstrap.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header class="box">
<h1>Book Shop</h1>
<button type="button" class="btn btn-light add-book">Add Book</button>
</header>
<a name="top"></a>
<main>
<div class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Modal title</h5>
<button onclick="onCloseModal()" type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Modal body text goes here.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="onCloseModal()">Close</button>
</div>
</div>
</div>
</div>
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">#</th>
<th scope="col">Name</th>
<th scope="col">Price</th>
<th scope="col">Image</th>
<th scope="col">Actions</th>
</tr>
</thead>
<tBody>
</tBody>
</table>
</main>
<footer>
cofferight © 2019
</footer>
<script src="lib/jquery/jquery.js"></script>
<script src="js/util.js"></script>
<script src="js/book-controller.js"></script>
<script src="js/book-service.js"></script>
</body>
</html>