23 lines
430 B
HTML
23 lines
430 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Proxy Settings</title>
|
|
<script src="options.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<form id="proxySettings">
|
|
<label>Active:</label>
|
|
<input type="checkbox" id="proxyActive">
|
|
<br>
|
|
<label>Host:</label>
|
|
<input type="text" id="proxyHost">
|
|
<label>Port:</label>
|
|
<input type="number" id="proxyPort">
|
|
<br>
|
|
<input type="submit" value="Save">
|
|
</form>
|
|
</body>
|
|
|
|
</html>
|