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