34 lines
924 B
PHP
34 lines
924 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Error | Simple Framework</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
.error-container {
|
|
background-color: white;
|
|
padding: 2rem;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
|
max-width: 500px;
|
|
}
|
|
h1 { color: #d9534f; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="error-container">
|
|
<h1>Oops! Something went wrong</h1>
|
|
<p>We're sorry, but an unexpected error occurred. Our team has been notified.</p>
|
|
<p><a href="/">Return to Home</a></p>
|
|
</div>
|
|
</body>
|
|
</html> |