dhravani / templates /error.html
coild's picture
Upload 23 files
133080e verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Error - COILD Dhravani</title>
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container-fluid px-3">
<div class="d-flex justify-content-between align-items-center pt-3 pb-3">
<h4 class="mb-0" style="color: #1a73e8;">COILD Dhravani</h4>
<a href="{{ url_for('index') }}" class="btn btn-outline-primary">Back to Home</a>
</div>
<div class="text-center mt-5">
<h1 class="display-1 fw-bold text-danger">{{ error_code }}</h1>
<p class="fs-4 text-muted">{{ error_message }}</p>
{% if error_code == 403 %}
<div class="mt-4">
<p>If you believe this is an error, please contact your administrator.</p>
</div>
{% endif %}
</div>
</div>
</body>
</html>