-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunauthorized2.php
86 lines (74 loc) · 2.15 KB
/
unauthorized2.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Akses Ditolak</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #ff9966, #ff5e62);
height: 100vh;
margin: 0;
}
.wrapper {
height: 80vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
width: 50%;
text-align: center;
background: white;
padding: 50px;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 2.5rem;
color: #333;
margin-bottom: 20px;
}
p {
font-size: 1.2rem;
color: #666;
margin-bottom: 30px;
}
.btn {
display: inline-block;
padding: 15px 30px;
font-size: 1rem;
font-weight: bold;
color: white;
background: #ff5e62;
border: none;
border-radius: 30px;
cursor: pointer;
transition: background 0.3s ease;
}
.btn:hover {
background: #ff9966;
}
.icon {
font-size: 3rem;
color: #ff5e62;
margin-bottom: 20px;
}
</style>
</head>
<body>
<!-- Jangan masukkan header.php jika tidak ingin navbar -->
<?php include 'assets/components/header.php'; ?>
<!-- Jika header.php harus dimasukkan, tambahkan logika di dalamnya untuk tidak menampilkan navbar pada halaman ini. -->
<div class="wrapper">
<div class="container">
<div class="icon">🚫</div>
<h1>Akses Ditolak</h1>
<p>Maaf, Anda tidak diizinkan masuk</p>
<a href="logout.php" class="btn">LOGOUT</a>
</div>
</div>
</body>
</html>