-
Notifications
You must be signed in to change notification settings - Fork 4
/
options.html
executable file
·74 lines (60 loc) · 1.5 KB
/
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
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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, shrink-to-fit=no, minimal-ui">
<title>San Proxy Setup</title>
<link href="css/spectre.min.css" rel="stylesheet" />
<link href="css/custom.css" rel="stylesheet" />
</head>
<body>
<div class="container text-center">
<h2>Enter your Socks IP and PORT 🔐</h2>
<br>
<pre><code>example: 127.0.0.1:1080</code></pre>
<form id="form">
<div class="form-group">
<input class="form-input user-form" type="text" name="apiurl" id="apiurl" placeholder="Your Socks5 IP" autocomplete="off">
</div>
<button type="submit" class="btn btn-gotify btn-lg read-more">🗃 Save Proxy</button>
</form>
<br>
<div id="save"></div>
</div>
<br>
<div class="container text-center">
<button class="btn btn-gotify btn-lg read-more" id="clear">⏺ Disable</button> <button class="btn btn-gotify btn-lg read-more" id="backuprestore">♻ Restore</button>
<br>
<br>
<div id="connection"></div>
</div>
<br>
<br>
<table class="table">
<tr>
<th>Back up</th>
</tr>
<tbody>
<tr class="active">
<td><pre><div id="proxyhistory"></div></pre></td>
</tr>
</tbody>
</table>
<table class="table">
<thead>
<tr>
<th>Status</th>
<th>Current IP</th>
</tr>
</thead>
<tbody>
<tr class="active">
<td><div id="status"></div></td>
<td><pre><div id="iptest"></div></pre></td>
</tr>
</tbody>
</table>
<script src="js/storage.js"></script>
<script src="js/proxy.js"></script>
</body>
</html>