-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (50 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Library</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="header">
<h1>Library Project</h1>
<h3>Hatcher Blair</h3>
</div>
<div class="content">
<div class="book-container">
</div>
<div class="center">
<button class="add-book">Add Book</button>
</div>
</div>
<div class="footer">
<p>Generic footer text goes here :D</p>
</div>
<div class="form-popup hidden" id="add-to-library">
<form action="" method="get" class="form-container">
<div class="form-row">
<label for="title">Title</label>
<input type="text" name="title" placeholder="Title" id="title" required>
</div>
<div class="form-row">
<label for="author">Author</label>
<input type="text" name="author" placeholder="Author" id="author" required>
</div>
<div class="form-row">
<label for="num-pages">Number of Pages</label>
<input type="number" name="num-pages" placeholder="0" id="num-pages" required>
</div>
<div class="form-row">
<label for="read">Read</label>
<input type="checkbox" name="read" id="read">
</div>
<div class="form-row">
<button type="submit" class="submit-form">Submit</button>
<button type="button" class="cancel-form">Close</button>
</div>
</form>
</div>
<script src="./script.js"></script>
</body>
</html>