forked from labnol/google-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
75 lines (74 loc) · 2.81 KB
/
main.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>My Proxy Server</title>
<style>
body {
font: 14px Verdana, Arial, Helvetica, sans-serif;
}
.box {
width:500px;
margin: 10px auto;
text-align: center;
padding: 20px;
border-top: 1px solid #CCCCCC;
border-right: 2px solid #CCCCCC;
border-bottom: 2px solid #CCCCCC;
border-left: 1px solid #CCCCCC;
}
h6 {
font: bold normal 1.2em Verdana, Arial, Helvetica, sans-serif;
color: #000000;
margin: 5px 5px 20px;
padding: 10px;
border-top: 1px solid #eee;
border-right: 0px solid #ddd;
border-bottom: 1px solid #ddd;
border-left: 0px solid #ddd;
}
.footer {
font: .9em Verdana, Arial, sans-serif;
margin: 8px;
padding: 12px 8px 8px;
text-align: left;
}
.credit {
font: .8em Verdana, Arial, sans-serif;
margin: 8px;
padding: 8px;
text-align: left;
}
input.txt {
background:#F9f9f9 url(none) repeat scroll 0%;
border:1px solid #999999;
font-size:0.9em;
padding:5px;
width:320px;
}
input.btn {
font-size:0.9em;
font-family: Arial, sans-serif;
width: 80px;
margin: 2px 0;
padding: 5px;
}
</style>
</head>
<body>
<div class="box">
<h6>My Proxy Server</h1>
<center>
<form action="" method="get" accept-charset="utf-8" target="_blank">
<input name="url" type="text" class="txt" id="input" placeholder="type url here.." onfocus="this.value='';" />
<input type="submit" class="btn" value="Go" />
</form>
</center>
<p class="footer">Instructions: Just type the URL of any web page in the input box above (
<em>e.g. labnol.org</em> ) and hit Enter.</p>
<p class="footer">You too can
<a href="http://www.labnol.org/internet/setup-proxy-server/12890/">setup a personal proxy server</a> using Google App Engine. For support, contact
<a href="http://twitter.com/labnol">@labnol</a> from
<a href="http://www.labnol.org/">Digital Inspiration</a>.</p>
</div>
</body>
</html>