| 12345678910111213141516171819202122232425262728293031 |
- <?php
- header('HTTP/1.0 401 Unauthorized');
- header('Content-Type: text/html; charset=utf-8');
- ?>
- <!DOCTYPE html>
- <html lang="fr">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>401 Accès Interdit</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f8d7da;
- color: #721c24;
- text-align: center;
- padding: 50px;
- }
- h1 {
- font-size: 2em;
- }
- </style>
- </head>
- <body>
- <h1>Accès Non Autorisé</h1>
- </body>
- </html>
|