42 lines
1.8 KiB
HTML
42 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Error - Aniworld</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="/static/css/styles.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container mt-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-6">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h4 class="card-title mb-0">Error {{ status_code }}</h4>
|
|
</div>
|
|
<div class="card-body text-center">
|
|
<div class="mb-4">
|
|
<i class="fas fa-exclamation-triangle text-warning" style="font-size: 4rem;"></i>
|
|
</div>
|
|
<h5>{{ error }}</h5>
|
|
<p class="text-muted">
|
|
{% if status_code == 404 %}
|
|
The page you're looking for doesn't exist.
|
|
{% elif status_code == 500 %}
|
|
Something went wrong on our end. Please try again later.
|
|
{% else %}
|
|
An unexpected error occurred.
|
|
{% endif %}
|
|
</p>
|
|
<a href="/" class="btn btn-primary">Go Home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="https://kit.fontawesome.com/your-kit-id.js" crossorigin="anonymous"></script>
|
|
</body>
|
|
</html> |