forked from Animeboynz/Mihon-Backup-Viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (43 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Manga Library</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div id="upload-modal" class="modal active">
<div class="modal-content">
<h2>Upload your JSON file or .tachibk file</h2>
<input type="file" id="file-input" accept=".json,.tachibk">
<button id="use-demo-data">Use Demo Data</button>
</div>
</div>
<div class="tabs" id="tabs">
<!-- Tabs will be generated here -->
</div>
<div id="tab-contents">
<!-- Tab contents will be generated here -->
</div>
</div>
<div id="manga-modal" class="modal">
<div class="modal-content">
<span id="close-manga-modal" class="close-button">×</span>
<h2 id="manga-title"></h2>
<p id="manga-source"></p>
<img id="manga-thumbnail" src="" alt="Manga Thumbnail">
<p id="manga-author"></p>
<p id="manga-artist"></p>
<p id="manga-genres"></p>
<p id="manga-description"></p>
<p id="manga-categories"></p>
<div id="manga-chapters"></div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/protobufjs/6.11.2/protobuf.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pako/2.0.3/pako.min.js"></script>
<script src="script.js"></script>
</body>
</html>