-
Notifications
You must be signed in to change notification settings - Fork 170
/
main.html
44 lines (35 loc) · 985 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>mirror - ɹoɹɹıɯ</title>
<link rel="stylesheet" href="static/base.css">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<h1>mıɾɾoɾ - ɹoɹɹıɯ</h1>
</header>
<section>
<div id="form_wrapper">
<form action="" method="GET" accept-charset="utf-8">
<div id="input_wrapper">
<span id="http_prefix">http://</span>
<input type="text" name="url" placeholder="type url here..." id="url_entry" autofocus><input id="go_button" type="submit" value="Go">
</div>
</form>
</div>
<div id="warning">
Fair use: All content belongs to the original copyright holders, respectively.
</div>
</section>
<footer class="secure">
{% if secure_url %}
<a href="{{secure_url}}">
{% endif %}
<img src="/static/{% if secure_url %}no{% endif %}lock.png" width="16" height="16">
{% if secure_url %}not secure</a>
{% else %}secure{% endif %}
</footer>
</body>
</html>