-
Notifications
You must be signed in to change notification settings - Fork 0
/
unauthorized.php
31 lines (31 loc) · 1.19 KB
/
unauthorized.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="/static/metro-all.min.css">
<title>WFDesk - Unauthorized</title>
<style>
.login-form {
width: 350px;
height: auto;
top: 50%;
margin-top: -120px;
}
</style>
</head>
<body class="h-vh-100 bg-steel">
<div class="login-form bg-white p-6 mx-auto border bd-default win-shadow">
<span class="mif-lock mif-4x place-right" style="margin-top: -10px;"></span>
<h2 class="text-light">Sorry...</h2>
<hr class="thin mt-4 mb-4 bg-white">
Your email <b><?php echo htmlentities($_SESSION['email']); ?></b> is not authorized to access WFDesk. Please contact an administrator.
<div class="form-group">
<a style="text-decoration:none" href="logout.php"><button style="margin-top:25px" class="button alert outline rounded">
<span class="mif-exit icon"></span>
<span class="caption">Logout</span>
</button></a>
</div>
</div>
</body>
</html>