-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 1.49 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<title>Aria2 Web Client</title>
</head>
<body>
<header>
<h1>Aria2 Web Client</h1>
<div id="global-status">
<p>Version:<span id="aria2-version"></span></p>
<p>up:<span id="global-speed-up"></span> down:<span id="global-speed-down"></span></p>
</div>
</header>
<nav>
<button class="new-download">新建</button>
<button class="downloading">下载中</button>
<button class="downloaded">已下载</button>
<button class="deleted">已删除</button>
<button class="setting">设置</button>
</nav>
<main>
<section class="new-download">
<label for="links">download links:</label>
<input type="url" name="links">
<button>Confirm</button>
</section>
<section class="downloading">
<ol>
</ol>
</section>
<section class="downloaded">
<ol>
<li>First downloaded Item</li>
<li>Second downloaded Ttem</li>
</ol>
</section>
<section class="deleted">
<ol>
<li>First deleted Item</li>
<li>Second deleted Ttem</li>
</ol>
</section>
<section class="setting">
<label for="server-url">server url:</label>
<input type="url" id="server-url" list="historyUrl">
<datalist id="historyUrl">
</datalist>
<button>确认</button>
</section>
</main>
<footer>
Writen by Xiaoming
</footer>
</body>
<script src="jsonrpc.js"></script>
<script src="aria2.js"></script>
<script src="script.js"></script>
</html>