-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
demopage-unencrypted.html
36 lines (36 loc) · 1.05 KB
/
demopage-unencrypted.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<title>File Unlocked!</title>
<style>
html, body {
background-color: #EEE;
}
#cssSpan {
font-weight: bold;
color: rgb(0, 163, 0);
}
#container {
width: calc(100% - 40px);
max-width: 600px;
margin: 20px auto;
padding: 20px;
background-color: white;
}
</style>
</head>
<body>
<div id="container">
<h1>Page Unlocked!</h1>
<p>You're looking at a web page that has just been decrypted by your browser using the password you supplied. This works with any HTML page, including pages which use Unicode ⚡, <span id="cssSpan">CSS</span>
<script>
document.write("and JavaScript!");
</script>
</p>
<p><a href="..">Go back home</a></p>
</div>
</body>
</html>