-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnoscript.html
More file actions
83 lines (83 loc) · 4.22 KB
/
noscript.html
File metadata and controls
83 lines (83 loc) · 4.22 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
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
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en" style="--purple: #8F84FD; --purple-gray: #686576; --light-gray: #f1f1f1; --gray: #d2d2d2; --dark-gray: #787878; --alt-gray: #767676; --alt-dark-gray: #505050;">
<head>
<script>
if(new URLSearchParams(window.location.search).get('refferer')) window.location.assign(window.location.href.replace('noscript.html?refferer=', ''));
let write = html => document.currentScript.insertAdjacentHTML('beforebegin', html);
</script>
<title>Maideniles - Error: JavaScript Disabled</title>
<meta charset="UTF-8">
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/icons/favicon-16x16.png">
<link rel="manifest" href="/assets/images/icons/site.webmanifest">
<link rel="mask-icon" href="/assets/images/icons/safari-pinned-tab.svg" color="#8f84fd">
<link rel="shortcut icon" href="/assets/images/icons/favicon.ico">
<meta name="msapplication-TileColor" content="#9f00a7">
<meta name="msapplication-config" content="/assets/images/icons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<meta name="description" content="Error: JavaScript Disabled">
<meta name="keywords" content="Error, JavaScript">
<meta name="author" content="Tim Wasinger">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/libs/css/w3-css-4.0.0.css">
<link rel="stylesheet" href="assets/libs/css/font-awesome-4.7.0.min.css">
<style>
a {
text-decoration: none;
border-bottom: 1px dotted black;
}
body {
user-select: none;
background-color: var(--gray);
background: linear-gradient(315deg, var(--gray) 0%, #98ABBD 100%);
display: flex;
align-items: center;
justify-content: center;
}
html, body {
height: 100%;
}
.hover-purple-text:hover {
color: var(--purple);
}
.dark-gray-text {
color: var(--dark-gray);
}
.purple-gray-text {
color: var(--purple-gray);
}
.logo {
height: 3em;
}
.w3-card {
border-radius: 25px;
}
.jsinfo {
border-radius: 0px;
}
</style>
</head>
<body>
<div class="w3-content w3-center">
<div class="w3-hide-medium w3-hide-large"><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div>
<h1 class="w3-xxxlarge purple-gray-text w3-padding"><strong><img class="logo w3-grayscale" src="assets/images/logo.png"><span class="w3-hide-small"> Maideniles.github.io</span><span class="w3-hide-medium w3-hide-large"><br>Maideniles</span></strong></h1>
<div class="w3-padding w3-container w3-responsive">
<div class="w3-card w3-padding w3-white">
<h1 class="w3-xxlarge"><strong>Error:<br>JavaScript Disabled <br class="w3-hide-medium w3-hide-large">¯\(°_o)/¯</strong></h1>
<script>write(`<h2 class="w3-medium"><strong><i>JavaScript is actually working fine. This is just the error page.</i><br class="w3-hide-medium w3-hide-large">(*^-^*)</strong></h2>`)</script>
<h2 class="w3-medium">The page you are trying to access needs JavaScript, and it is either unsupported or disabled on your browser. To view the page please enable JavaScript or update to a modern browser, and then reload the page or click <a class="hover-purple-text" href="" title="Reload">here</a>. Alternatively you can go to the home page <a class="hover-purple-text" href="/" title="Home">here</a>.</h2>
<div class="w3-card w3-padding w3-margin w3-container jsinfo">
<div class="w3-left-align w3-threequarter">
JavaScript <span class="dark-gray-text">[<strong>jah</strong>-v<i>uh</i>-skript]</span> (noun)
<br>
 - a high-level, object-oriented scripting language often used to create interactive websites.
</div>
<img class="w3-right w3-quarter" alt="JS" src="assets/images/js.png">
</div>
<h2 class="w3-medium">To enable javascript click <a class="hover-purple-text" href="https://enable-javascript.com/" title="How to Enable JavaScript" target="_blank">here <i class="fa fa-external-link"></i></a>.</h2>
</div>
</div>
</div>
</body>
</html>