-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
58 lines (51 loc) · 1.27 KB
/
404.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
---
layout: default
title: 404
hide-in-nav: true
permalink: /404.html
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>WARNING</title>
<style>
.body{
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.container{
text-align: center;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: rgb(134, 0, 0);
}
.background{
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
height: 80vh;
widows: 40vw;
}
</style>
</head>
<body>
<div class="background">
<img src="https://github.com/kirisamer/kirisamer.github.io/blob/master/img/warning.png?raw=true">
</div>
<div class="container">
<h3 class="submit">[ SUBMIT LEVEL 5 SECURITY CREDENTIAL ]</h3>
</div>
<script>
const submit = document.querySelector('.submit');
submit.addEventListener('click', () => {
alert("Warning: Insufficient Credential Provided. \nYou are not allowed to access the information. \nRedirecting...")
self.location.href='http://kirisamer.github.io'
})
</script>
</body>
</html>