-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
33 lines (32 loc) · 869 Bytes
/
Copy pathoptions.html
File metadata and controls
33 lines (32 loc) · 869 Bytes
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
<!doctype html>
<html>
<head>
<title> Switch Proxy </title>
<link rel='stylesheet' type='text/css' href='options.css'>
</head>
<body>
<div id='content'>
<h1> Switch Proxy Options</h1>
<p class='info'> Configure <a href='http://en.wikipedia.org/wiki/SOCKS'> SOCKS5</a> Proxy </p>
<table id='options'>
<tr>
<td>Host</td>
<td> <input type='text' id='host'></input></td>
</tr>
<tr>
<td>Port</td>
<td> <input type='text' id='port'></input></td>
</tr>
<tr>
<td><button id='save'><strong>Save</strong></button></td>
<td></td>
</tr>
</table>
</div>
<div id='footer'>
<p> <a href='http://github.com/ligong/switchproxy'>Switch Proxy source code</a> </p>
<p> ©2013 - <a href='http://github.com/ligong'> Li Gong </a> </p>
</div>
</body>
<script src="options.js"></script>
</html>