forked from goldenratio/zeronet-protocol-crx
-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.html
43 lines (35 loc) · 773 Bytes
/
settings.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
<!doctype html>
<html>
<head>
<title>ZeroNet Settings</title>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<script src="js/settings.js"></script>
</head>
<body>
<div class="container">
<div class="title-header">
ZeroNet Settings
</div>
<div class="hr"></div>
<div>
Set Proxy Information:<br>
(Location where ZeroNet is running)
</div>
<br>
<div class="data-content">
<div>
IP Address: <input type="text" id="js-ip_tf" style="margin-left: 22px;">
</div>
<br>
<div>
Port: <input type="text" id="js-port_tf" style="margin-left: 60px;">
</div>
<br><br>
<div>
<input type="button" id="js-save_btn" value="save">
<input type="button" id="js-clear_btn" value="clear">
</div>
</div>
</div>
</body>
</html>