blob: 1a088f6c4b3c978e47c9f4c07a3de94e21ae2460 (
plain) (
blame)
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
|
<html>
<head>
<title>EPub Manager</title>
<link rel="stylesheet" type="text/css" href="../assets/css/smoothness/jquery-ui-1.13.2.custom.min.css" />
<link rel="stylesheet" type="text/css" href="../assets/css/cleditor/jquery.cleditor-1.4.5.css" />
<link rel="stylesheet" type="text/css" href="../assets/css/style.css" />
<script type="text/javascript">
{{ alert }}
</script>
</head>
<body>
<div id="wrapper">
<ul id="booklist">
{{ booklist }}
</ul>
<form action="" method="post" id="bookpanel" enctype="multipart/form-data">
<input type="hidden" name="book" value="{{ book }}" />
<table>
<tr>
<th>Title</th>
<td><input type="text" name="title" value="{{ title }}" /></td>
</tr>
<tr>
<th>Authors</th>
<td id="authors">
{{ authors }}
</td>
</tr>
<tr>
<th>Description<br />
<img src="{{ cover }}" id="cover" width="90"
class="{{ imgclass }}" />
</th>
<td><textarea name="description">{{ description }}</textarea></td>
</tr>
<tr>
<th>Subjects</th>
<td><input type="text" name="subjects" value="{{ subjects }}" /></td>
</tr>
<tr>
<th>Publisher</th>
<td><input type="text" name="publisher" value="{{ publisher }}" /></td>
</tr>
<tr>
<th>Copyright</th>
<td><input type="text" name="copyright" value="{{ copyright }}" /></td>
</tr>
<tr>
<th>Language</th>
<td><p><input type="text" name="language" value="{{ language }}" /></p></td>
</tr>
<tr>
<th>ISBN</th>
<td><p><input type="text" name="isbn" value="{{ isbn }}" /></p></td>
</tr>
<tr>
<th>Cover Image</th>
<td><p>
<input type="file" name="coverfile" />
URL: <input type="text" name="coverurl" value="" />
</p></td>
</table>
<div class="center">
<input name="save" type="submit" />
</div>
</form>
<!-- load at the end, for faster site load -->
<script type="text/javascript" src="../assets/js/jquery-3.7.1.min.js"></script>
<script type="text/javascript" src="../assets/js/jquery-ui-1.13.2.custom.min.js"></script>
<script type="text/javascript" src="../assets/js/jquery.cleditor-1.4.5.min.js"></script>
<script type="text/javascript" src="../assets/js/script.js"></script>
</div>
</body>
</html>
|