2021-06-26 18:08:35 +00:00
|
|
|
<!DOCTYPE html>
|
2023-02-25 22:26:25 +00:00
|
|
|
<html lang="en">
|
2021-06-26 18:08:35 +00:00
|
|
|
<head>
|
|
|
|
<title>Library</title>
|
2021-08-05 02:59:23 +00:00
|
|
|
<link rel="stylesheet" href="style.css" />
|
2021-06-26 18:08:35 +00:00
|
|
|
<link rel="icon" href="favicon.ico" type="image/x-icon" />
|
|
|
|
<link
|
2021-08-05 02:59:23 +00:00
|
|
|
href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700&display=swap"
|
2021-08-09 01:23:43 +00:00
|
|
|
as="style"
|
|
|
|
rel="stylesheet preload prefetch"
|
2021-06-26 18:08:35 +00:00
|
|
|
/>
|
2021-11-01 00:00:04 +00:00
|
|
|
<script type="text/javascript" src="app.js"></script>
|
2021-11-01 00:07:41 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
window.addEventListener("DOMContentLoaded", init);
|
|
|
|
</script>
|
2023-10-08 19:05:15 +00:00
|
|
|
<script
|
|
|
|
defer
|
|
|
|
data-domain="library.yetaga.in"
|
|
|
|
src="https://stats.yetaga.in/js/script.js"
|
|
|
|
></script>
|
2023-02-25 22:26:25 +00:00
|
|
|
<meta name="description" content="A personal library record." />
|
2021-06-26 18:08:35 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="wrapper">
|
|
|
|
<div id="header">
|
|
|
|
<h1>Library</h1>
|
2022-04-02 17:38:14 +00:00
|
|
|
<a href="/records">records</a>
|
2021-08-05 02:59:23 +00:00
|
|
|
<a
|
|
|
|
target="_blank"
|
|
|
|
rel="noreferrer"
|
|
|
|
href="https://git.yetaga.in/alazyreader/library"
|
2021-06-26 18:08:35 +00:00
|
|
|
>git</a
|
|
|
|
>
|
2024-01-06 21:38:13 +00:00
|
|
|
<a href="#" id="addBook" class="hidden">add book</a>
|
2021-06-26 18:08:35 +00:00
|
|
|
<div id="searchBox">
|
2023-10-08 19:39:03 +00:00
|
|
|
<label for="childrens" class="bookCount"
|
|
|
|
>Include Childrens Books?</label
|
|
|
|
>
|
2023-10-08 19:05:15 +00:00
|
|
|
<input id="childrens" type="checkbox" name="childrens" />
|
2023-02-05 01:51:40 +00:00
|
|
|
<span id="bookCount" class="bookCount">_ books</span>
|
2021-06-26 18:08:35 +00:00
|
|
|
<input
|
|
|
|
id="search"
|
|
|
|
type="text"
|
|
|
|
name="search"
|
|
|
|
placeholder="Search..."
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="current">No Book Selected</div>
|
|
|
|
<div id="books"></div>
|
|
|
|
<!-- Table goes here -->
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|