-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
76 lines (70 loc) · 2.9 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
<!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">
<title>Bookshelf Apps</title>
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrapper">
<header>
<h1>Bookshelf Apps</h1>
</header>
<div class="top">
<div class="form-container">
<h2 class="title">Tambah Buku Baru</h2>
<form id="formDataBuku" action="" method="post">
<div class="form-group">
<input type="text" name="judul" id="judul" placeholder="">
<label for="judul">Judul</label>
</div>
<div class="row">
<div class="form-group">
<input type="text" name="penulis" id="penulis" placeholder="">
<label for="penulis">Penulis</label>
</div>
<div class="form-group">
<input type="number" name="tahun" id="tahun" placeholder="">
<label for="tahun">Tahun</label>
</div>
</div>
<div class="form-check">
<input type="checkbox" name="isRead" id="isRead" placeholder="">
<label for="isRead">Sudah selesai dibaca</label>
</div>
<button type="submit" class="submit-btn">Simpan</button>
</form>
</div>
<div class="cari-container">
<h2 class="title">Cari Buku</h2>
<form id="formSearch" action="" method="post">
<div class="form-group">
<input type="text" name="pencarian" id="pencarian" placeholder="">
<label for="pencarian">Cari Buku</label>
</div>
<div class="form-search-bottom">
<button type="reset" class="reset-btn"><i class='bx bx-reset'></i></button>
<button type="submit" class="cari-btn"><i class='bx bx-search-alt-2'></i></button>
</div>
</form>
</div>
</div>
<div class="bottom">
<div class="left-container">
<h2 class="title">Buku Belum Dibaca</h2>
<div id="belumDibaca">
</div>
</div>
<div class="right-container">
<h2 class="title">Buku Sudah Dibaca</h2>
<div id="sudahDibaca">
</div>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>