-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
36 lines (35 loc) · 921 Bytes
/
options.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
<!doctype html>
<html>
<head>
<title>ChromeTorrent - options</title>
</head>
<script type="text/javascript" src="options.js"></script>
<body>
<h1>
<img src="chrometorrent128.png" align="middle" alt="chromeTorrent"/> Welcome To ChromeTorrent
</h1>
<p>Please specify the options to connect to your uTorrent web-gui.</p>
<table>
<tr>
<td>Host</td>
<td><input type="text" id="host"/></td>
<td>example: http://localhost:8080/gui/</td>
</tr>
<tr>
<td>User</td>
<td><input type="text" id="user"/></td>
<td>example: admin </td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" id="password"/></td>
<td>example: supersecretpassword</td>
</tr>
</table>
<button id="save_options">Save</button>
<div id="status"></div>
<input type="button" id="refresh_log" value="Refresh log" />
<div id="log"></div>
<input type="button" id="clear_log" value="Clear log" />
</body>
</html>