-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccess_denied.php
72 lines (71 loc) · 2.38 KB
/
access_denied.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ошибка - TinyGeek</title>
<link rel="icon" href="assets/images/logo_icon.webp">
</head>
<?
include('assets/scripts/db_connect.php');
session_start();
?>
<style>
@import url('https://fonts.googleapis.com/css2?family=Doto&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
}
body {
background: radial-gradient(at bottom right, #fdfdfd 0, #fdfdfd 8px,
rgba(253,253,253,0.2) 8px, rgba(253,253,253,0.2) 16px, rgba(253,253,253,0.75) 16px, rgba(253,253,253,0.75) 24px,
rgba(253,253,253,0.25) 24px, rgba(253,253,253,0.25) 32px, rgba(253,253,253,0.3) 32px, rgba(253,253,253,0.3) 40px,
rgba(253,253,253,0.75) 40px, rgba(253,253,253,0.75) 48px, rgba(253,253,253,0.2) 48px, rgba(253,253,253,0.2) 56px,
transparent 56px, transparent 64px),
radial-gradient(at top left, transparent 0, transparent 8px, rgba(253,253,253,0.2) 8px, rgba(253,253,253,0.2) 16px,
rgba(253,253,253,0.75) 16px, rgba(253,253,253,0.75) 24px, rgba(253,253,253,0.3) 24px, rgba(253,253,253,0.3) 32px,
rgba(253,253,253,0.25) 32px, rgba(253,253,253,0.25) 40px, rgba(253,253,253,0.75) 40px, rgba(253,253,253,0.75) 48px,
rgba(253,253,253,0.2) 48px, rgba(253,253,253,0.2) 56px, #fdfdfd 56px, #fdfdfd 64px, transparent 64px, transparent 160px);
background-blend-mode: multiply;
background-size: 64px 64px, 64px 64px;
background-color: #f2f2f2;
}
.logotype {
font-size: 5rem;
font-weight: 500;
text-align: center;
margin-bottom: 1.5rem;
font-family: "Doto", sans-serif;
font-weight: 900;
font-style: normal;
font-variation-settings: "ROND" 0;
}
h1 {
color:black;
margin-top:1%;
margin-bottom:1%;
font-size: 50px;
}
a {
color:#277adc;
margin-top:1%;
margin-bottom:1%;
}
.redir {
margin-top:10%;
text-align: center;
}
</style>
<body>
<div class="redir">
<h1 class="logotype">TinyGeek</h1>
<h1>Отказано в доступе</h1>
<a href="main.php">Вернуться на главную</a>
</div>
</body>
</html>