-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (37 loc) · 1015 Bytes
/
index.html
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
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Proxy Test</title>
<style>
textarea {
width: 100%;
height: 200px;
}
</style>
</head>
<body>
<section>
<h1>Proxy Tests</h1>
<p>
Optionally set your proxy URL. Examples:
<ul>
<li><code>http://proxy.com</code></li>
<li><code>https://proxy.com</code></li>
<li><code>http://proxy.com:8080</code></li>
<li><code>http://user:pass@proxy.com</code></li>
</ul>
</p>
<p><label>Proxy URL: <input style="font-family: monospace; width: 150px;" type="text" id="proxy" /></label></p>
<p><label>CA file: <input style="font-family: monospace; width: 150px;" type="file" id="cafile" /></label></p>
<p><button id="start">Run Tests</button></p>
</section>
<section id="results">
<!--<h1>Results</h1>-->
<!--<textarea id="results" style="width: 100%; height: 200px;"></textarea>-->
</section>
</body>
<script>
require('./renderer.js')
</script>
</html>