2019-02-07 17:09:31 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="stylesheet" href="options.css"/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<section class="scheme-options">
|
|
|
|
<span class="title">Proxy Scheme:</span>
|
|
|
|
<select id="proxy_scheme">
|
|
|
|
<option value="http" selected>HTTP</option>
|
|
|
|
<option value="socks5">SOCKS5</option>
|
|
|
|
</select>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="scheme-options proxy-options">
|
|
|
|
<div class="title" >Proxy Options</div>
|
|
|
|
|
2019-02-07 20:14:57 -05:00
|
|
|
<label>Host: <input type="text" data="host" id="host" value="127.0.0.1"/></label>
|
2019-02-07 17:09:31 -05:00
|
|
|
<br>
|
2019-02-07 20:14:57 -05:00
|
|
|
<label>Port: <input type="text" data="port" id="port" value="4444"/></label>
|
2019-02-07 17:09:31 -05:00
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<input type="button" value="Save preferences" id="save-button"/>
|
|
|
|
|
|
|
|
<script src="options.js"></script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|