forked from goldenratio/zeronet-protocol-crx
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.html
51 lines (35 loc) · 906 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
44
45
46
47
48
49
50
51
<!doctype html>
<html>
<head>
<title>ZeroNet Settings</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script src="js/jquery-3.1.1.slim.min.js"></script>
<script src="js/settings.js"></script>
</head>
<body>
<div>
<div>
ZeroNet Proxy Address:<br> (URL you use to open ZeroNet normally)
</div>
<br>
<div id="error">
<div id="err"></div>
</div>
<br>
<div class="content">
<div>
IP Address: <input type="text" placeholder="127.0.0.1" class="input" id="ip_field" style="margin-left: 10px;">
</div>
<br>
<div>
Port: <input type="text" placeholder="43110" class="input" id="port_field" style="margin-left: 10px;">
</div>
</div>
<br><br>
<div>
<button id="btn_save">Save</button>
<button id="btn_clear">Clear</button>
</div>
</div>
</body>
</html>