-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (53 loc) · 2.12 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
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Library</title>
</head>
<body>
<div class="container">
<h1 class="main-title"><i class="fas fa-book yellow"></i> The Library App</h1>
<div class="inner-container">
<div class="books-container">
</div>
<div class="button-container">
<i class="fas fa-plus add-btn"></i>
<!-- <i class="fas fa-minus remove-btn"></i> -->
<!-- <button class = "see-btn">See</button> -->
</div>
<!-- This needs to be hidden until the 'Add button is clicked' -->
</div>
<div class="modal">
<form class="form-container">
<h1>Enter Book Data</h1>
<label id="title-field">
<h2 class = "form-text">Enter Book Name</h2>
<input type="text" name = "book-title">
</label>
<label id="author-field">
<h2 class = "form-text">Enter Authour Name</h2>
<input type="text" name = "author">
</label>
<label id = "page-field">
<h2 class = "form-text">Enter the Number of Pages</h2>
<input type="number" name = "pages" >
</label>
<label id="read-field">
<h2 class = "form-text">Have you read this book?</h2>
Yes<input type="radio" name = "read" value = "yes">
No<input type="radio" name = "read" value = "no">
</label>
<div class="modal-btn">
<button class = "btn submit-btn" type = "button">Submit</button>
<button class = "btn close-btn" type = "button">Cancel</button>
</div>
</form>
</div>
</div>
</body>
<script src="script.js"></script>
</html>