forked from nightmarez/Casino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccessdenied.php
47 lines (43 loc) · 1.33 KB
/
accessdenied.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
<!DOCTYPE html>
<html>
<head>
<title>Нет доступа</title>
<?php require_once('head.php'); ?>
<style>
body {
background-color: white;
}
#modal-window {
height: auto;
}
#login-footer {
margin-top: 80px;
margin-bottom: -37px;
}
</style>
</head>
<body>
<div id="modal-window-outer">
<div id="modal-window">
<div id="modal-window-header">У вашего аккаунта нет доступа к этому разделу</div>
<table style="border: none; margin-top: 100px; width: 100%;">
<tr style="border: none;">
<td style="border: none; width: 50%;">
<form action="/logout.php" method="POST">
<button style="margin: 0 auto; width: 250px; float: none; display: block;" type="submit" value="Войти" id="button-logout" />Выйти</button>
</form>
</td>
<td style="border: none; width: 50%;">
<form action="/index.php" method="POST">
<button style="margin: 0 auto; width: 250px; float: none; display: block;" type="submit" value="Войти" id="button-login" />На главную</button>
</form>
</td>
</tr>
</table>
<div id="login-footer">
Ещё не зарегистрированы? <a href="/register.php">Присоединяйтесь!</a>
</div>
</div>
</div>
</body>
</html>