-
Notifications
You must be signed in to change notification settings - Fork 900
/
Copy pathindex.html
35 lines (29 loc) · 889 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1 id="header">
The Library
</h1>
<div id="book-form-container" style="display: none;">
<form id="book-form">
<input type="text" id="title" placeholder="Title" required>
<input type="text" id="author" placeholder="Author" required>
<input type="number" id="pages" placeholder="Number of Pages" required>
<label>
<input type="checkbox" id="readStatus">
Read?
</label>
<button type="submit">Add Book</button>
</form>
</div>
<div id="library-container"></div>
<div id="book-exists-component"></div>
<div>
<button id="new-book-btn" class="add-button">NEW BOOK</button>
</div>
<script src="books.js"></script>
</body>
</html>