<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oops! Something Went Wrong</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
text-align: center;
padding: 100px;
}
h1 {
font-size: 3em;
color: #e74c3c;
}
p {
font-size: 1.2em;
color: #555;
}
.error-message {
background-color: #f8d7da;
color: #721c24;
padding: 15px;
border-radius: 5px;
margin-top: 20px;
}
.btn-reload {
padding: 10px 20px;
font-size: 1em;
background-color: #3498db;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
margin-top: 30px;
}
.btn-reload:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<h1>Oops! Something Went Wrong...</h1>
<p>We encountered an error while loading the page. Please try again later.</p>
<div class="error-message">
<strong>Error Code:</strong> 500 - Internal Server Error
</div>
<a href="javascript:window.location.reload();" class="btn-reload">Reload Page</a>
<!--
CP1 - Horsey tunnel: (34.1305900, -118.2748419)
-->
<script>
// Simulate a website crash by showing a fake loading delay
setTimeout(() => {
document.body.innerHTML = "<h1>Page Crashed!</h1><p>Sorry for the inconvenience. The website has crashed and needs to restart.</p>";
}, 3000); // Simulates 3 seconds before the crash page appears
</script>
</body>
</html>