-
Notifications
You must be signed in to change notification settings - Fork 1
/
403.html
executable file
·62 lines (32 loc) · 841 Bytes
/
403.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
<!DOCTYPE html>
<html>
<head>
<!-- css -->
<link rel="stylesheet" href="/css/css.css" type="text/css" />
<!-- libraries -->
<script src="/javascript/jquery-3.4.1.min.js" type="text/javascript"></script>
<!-- scripts -->
<script src="/javascript/modules.js" type="text/javascript"></script>
</head>
<body>
<div class="container centered">
<div class="flex flex-column">
<div class="flex-cell">
<div class="button text-center text-bold">
ERROR // 403 // FORBIDDEN
</div>
</div>
<div class="flex flex-center">
<a href="/">
<div class="icon icon-256 logo-grey"></div>
</a>
</div>
<div class="flex-cell">
<div class="button text-center text-bold">
ERROR // 403 // FORBIDDEN
</div>
</div>
</div>
</div>
</body>
</html>