forked from AllMangasReader-dev/AMR
-
Notifications
You must be signed in to change notification settings - Fork 1
/
search.html
102 lines (93 loc) · 3.44 KB
/
search.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!--
This file is part of All Mangas Reader.
All Mangas Reader is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
All Mangas Reader is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with All Mangas Reader. If not, see <http://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>All Mangas Reader Search Tool</title>
<link href="css/amr_style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/search.css" type="text/css" >
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/MangaElt.js" type="text/javascript"></script>
<script src="js/mgEntry.js" type="text/javascript"></script>
<script src="js/mgUtil.js" type="text/javascript"></script>
<script src="js/analytics.js" type="text/javascript"></script>
<script src="js/popupSearch.js" type="text/javascript"></script>
<script src="js/innermenu.js" type="text/javascript"></script>
<script src="js/wssql.js" type="text/javascript"></script>
<script src="js/amrcsql.js" type="text/javascript"></script>
<script src="js/search.js" type="text/javascript"></script>
</head>
<body>
<div id="header">
<div id="subheader">
<img class="imglogo" src="img/icon-32.png" width="100" alt="AllMangasReaderIcon"/>
<h1>All Mangas Reader Search Tool</h1>
</div>
</div>
<div id="menunav">
<div id="menuitems">
<ul>
<li> </li>
</ul>
</div>
</div>
<div id="corpseone">
<div id="subcorpseone">
<div class="article parent ongletCont" id="ong1" style="width:100%;">
<div class="article">
<h2>
Search a manga
</h2>
<table style="width:100%;">
<tr id="searchBox">
<td>
<p>Text to search :
<input id="searchBoxInput" type="text" />
<a id="butFind" href="#" class="imgSearch"></a>
<a id="coverLoadServer" style="display:none"><img src="img/lab_load.gif" alt="Loading"/></a>
</p><div id="selectors"></div>
<p>Web sites to search (click on the icon to enable / disable) : </p>
<div style="clear:both"></div>
<div id="filMirrors"></div>
</td>
</tr>
</table>
<div class="article" id="resTr" style="display:none;">
<h3>
Search results
</h3>
<table style="width:100%;">
<tr>
<td id="searchZone">
<div id="nbRes" style="display:none">
</div>
<div id="results" style="width:100%">
</div>
<div id="nores" style="display:none">
<p>No result found</p>
</div>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
All Mangas Reader 2012.
</div>
</body>
</html>