58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Error - Akses Ditolak</title>
|
|
<style>
|
|
/* Reset sederhana */
|
|
* { margin:0; padding:0; box-sizing:border-box; font-family: Arial, sans-serif; }
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background: #f8f9fa;
|
|
color: #333;
|
|
}
|
|
.error-container {
|
|
text-align: center;
|
|
padding: 40px;
|
|
background: #fff;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
|
max-width: 400px;
|
|
}
|
|
.error-code {
|
|
font-size: 72px;
|
|
font-weight: bold;
|
|
color: #ff6b6b;
|
|
margin-bottom: 20px;
|
|
}
|
|
.error-message {
|
|
font-size: 18px;
|
|
margin-bottom: 30px;
|
|
}
|
|
.btn-home {
|
|
text-decoration: none;
|
|
padding: 12px 24px;
|
|
background: #ff6b6b;
|
|
color: #fff;
|
|
border-radius: 8px;
|
|
transition: background 0.3s ease;
|
|
}
|
|
.btn-home:hover {
|
|
background: #ff4b4b;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="error-container">
|
|
<div class="error-code">403</div>
|
|
<div class="error-message">
|
|
Maaf, halaman tidak ditemukan atau akses Anda ditolak.
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|