-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (47 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css" />
<title>Library</title>
</head>
<body>
<div class="bg_container d_none">
<div class="modal">
<fieldset>
<label for="input_title">Title</label>
<input type="text" id="input_title" name="input_title" pattern="^[a-zA-Z]+$">
<label for="input_author">Author</label>
<input type="text" id="input_author" name="input_author" pattern="^[a-zA-Z]+$">
<label for="input_page">Pages</label>
<input type="number" id="input_page" name="input_page" min="1">
<div class="bottom_modal">
<div class="modal_read">
<label for="input_read">Read</label>
<input type="checkbox" id="input_read" name="input_read" value="on">
</div>
<div class="modal_control">
<button class="btn_submit" type="submit">Submit</button>
<button class="btn_remove">Close</button>
</div>
</div>
</fieldset>
</div>
</div>
<div class="main_content">
<header>
<div class="header_content">
<p class="title">library</p>
</div>
</header>
<div class="control">
<button class="new_book">new Book</button>
</div>
<div class="book_content">
<!-- render JS -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>