-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path500.php
More file actions
24 lines (24 loc) · 977 Bytes
/
500.php
File metadata and controls
24 lines (24 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Server Error</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="bg-light">
<main class="container my-5 text-center">
<div class="row">
<div class="col-md-8 mx-auto">
<h1 class="display-1 fw-bold text-warning">500</h1>
<h2 class="mb-3">Server Error</h2>
<p class="lead mb-4">Something went wrong on our end. Please try again in a moment.</p>
<div class="d-flex gap-2 justify-content-center">
<a href="/" class="btn btn-primary">Back to Home</a>
<a href="javascript:history.back()" class="btn btn-outline-secondary">Go Back</a>
</div>
</div>
</div>
</main>
</body>
</html>