-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
59 lines (55 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Book Library</title>
<link rel="stylesheet" href="/assets/css/style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
</head>
<body>
<header></header>
<main>
<h1 class="font-wieght-bolder my-5 text-center">JS Book Library</h1>
<button type="button" class="btn btn-primary d-block mb-3 mx-auto" id='add-book'>Add book</button>
<div class='d-flex justify-content-center'>
<form class='w-50 mb-3' id='form' onsubmit = 'hideForm(); return false;'>
<h4 class="text-center">Add Book to Library</h4>
<div class="form-group">
<label for="title">Title:</label>
<input type="text" class="form-control" id="title" required=true placeholder="Enter book title!">
</div>
<div class="form-group">
<label for="author">Author:</label>
<input type="text" class="form-control" id="author" placeholder="Book Author" required=true>
</div>
<div class="form-group">
<label for="pages">Pages:</label>
<input type="number" class="form-control" id="pages" placeholder="Book Pages" required=true>
</div>
<label for="read">Have you read this book?</label>
<div class="form-check">
<input type="radio" class="form-check-input" name="read" id="yes" value="Yes" required=true>
<label class="form-check-label" for="yes">Yes</label>
</div>
<div class = 'form-check'>
<input type="radio" class="form-check-input" name="read" id="no" value="No" required=true>
<label class="form-check-label" for="no">No</label></span>
</div>
<button type="submit" id = "submit-form" name="submit" class="btn btn-primary">Submit</button>
</form>
</div>
<div class="Books" id="books">
<table class="table" id="table">
<tbody id="book-list"></tbody>
</table>
</div>
</main>
<footer></footer>
<script src="assets/script/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous">
</script>
</body>
</html>