-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (92 loc) · 4.07 KB
/
index.html
File metadata and controls
93 lines (92 loc) · 4.07 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
<!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>Badreads Bookshelf</title>
<link rel="stylesheet" href="./styles/stylesheet.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
</head>
<body>
<header>
<nav>
<h1 class="title">Badreads Bookshelf</h1>
</nav>
</header>
<main>
<div class="container">
<h3 class="sub-title">Masukkan buku baru</h3>
<form action="#" class="form inputbuku">
<label for="judul" class="sub-title">Judul</label>
<input type="text" id="judul" name="judul" placeholder="Judul Buku" required>
<label for="penulis" class="sub-title">Penulis</label>
<input type="text" id="penulis" name="penulis" placeholder="Penulis Buku" required>
<label for="tahun" class="sub-title">Tahun</label>
<input type="text" id="tahun" name="tahun" placeholder="Tahun Terbit" required>
<label for="selesai" class="sub-title">Selesai dibaca</label>
<input type="checkbox" id="selesai" name="selesai" placeholder="Selesai dibaca">
<div class="submitwrap">
<label for="submitbook" class="submitlabel">Masukkan buku ke rak<br><span class="shelfname">(memuat rak...)</span></label>
<input type="submit" name="submitbook" id="submitbook" value="">
</div>
</form>
</div>
<div class="container">
<h3 class="sub-title">Cari buku</h3>
<form action="#" class="form search">
<label for="searchbook" class="sub-title">Judul: </label>
<input type="text" id="searchbook" name="searchbook" placeholder="Cari judul buku">
<input type="submit" name="submitsearch" id="submitsearch" value="Cari">
</form>
</div>
<div class="container">
<h3 class="sub-title">Belum selesai dibaca</h3>
<div class="contentwrap notDone">
<div class="belumSelesai">
<span class="material-symbols-outlined">
menu_book
</span>
<div class="details">
<h4 class="sub-title">Title</h4>
<p>Penulis</p>
<p>Tahun terbit</p>
</div>
<div class="options">
<input type="button" id="selesaiStatus" value="Belum selesai">
<input type="button" id="hapus" value="Hapus">
</div>
</div>
</div>
</div>
<div class="container">
<h3 class="sub-title">Selesai dibaca</h3>
<div class="contentwrap done">
<div class="sudahSelesai">
<span class="material-symbols-outlined">
menu_book
</span>
<div class="details">
<h4 class="sub-title">Title</h4>
<p>Penulis</p>
<p>Tahun terbit</p>
</div>
<div class="options">
<input type="button" id="selesaiStatus" value="Selesai">
<input type="button" id="hapus" value="Hapus">
</div>
</div>
</div>
</div>
<div class="modal-alert">
<div class="modal-wrap">
<span class="material-symbols-outlined alert-icon">
cancel
</span>
<p class="alert-msg">Item telah berhasil dihapus. <span class="recover">Pulihkan?</span></p>
</div>
</div>
</main>
<script src="./scripts/script.js" type="text/javascript"></script>
</body>
</html>