-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
30 lines (30 loc) · 1.05 KB
/
Copy pathpopup.html
File metadata and controls
30 lines (30 loc) · 1.05 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Proxy Settings</title>
<link rel="stylesheet" type="text/css" href="popup.css"/>
</head>
<body>
<img id="icon" src="images/icon-48.png" align="right">
<h3>Proxy Settings</h3>
<div class="form" id="form">
<br>
<label class="labels" for="proxyHost">Proxy Host:</label><br>
<input class="inputs" type="text" id="proxyHost" name="proxyHost" value="127.0.0.1">
<br>
<label class="labels" for="proxyPort">Proxy Port:</label><br>
<input class="inputs" type="text" id="proxyPort" name="proxyPort" value="443">
<br><br>
<label class="labels" for="passthrough">Passthrough:</label><br>
<textarea class="inputs" rows="3" cols="17" style="resize:none;" id="passthrough" name="passthrough"></textarea>
</div>
<br>
<div class="buttons" id="buttons">
<input type="submit" id="disableBtn" value="Disable">
<input type="submit" id="enableBtn" value="Enable">
<br><br>
</div>
<script src="popup.js"></script>
</body>
</html>