✏️ Editing:
20260212122703index403.php
<?php // Set header 403 Forbidden http_response_code(403); ?> <!DOCTYPE html> <html lang="id"> <head> <meta charset="UTF-8"> <title>403 Dilarang</title> <style> body { background-color: #f8f8f8; color: #333; font-family: Arial, sans-serif; text-align: center; padding-top: 100px; } h1 { font-size: 72px; color: #e74c3c; } p { font-size: 24px; } a { color: #3498db; text-decoration: none; } </style> </head> <body> <h1>403</h1> <p>Akses Dilarang</p> <p>Anda tidak memiliki izin untuk mengakses halaman ini.</p> <p><a href="/">Kembali ke Beranda</a></p> </body> </html>
💾 Save
⬅️ Back