Spaces:
Sleeping
Sleeping
{% extends "base.html" %} | |
{% block title %}Error {{ error_code }} - Farm Management Portal{% endblock %} | |
{% block content %} | |
<div class="container py-5"> | |
<div class="row justify-content-center"> | |
<div class="col-md-6 text-center"> | |
<div class="card shadow"> | |
<div class="card-body py-5"> | |
<div class="mb-4"> | |
<i class="fas fa-exclamation-triangle fa-5x text-warning"></i> | |
</div> | |
<h1 class="display-1 text-muted">{{ error_code }}</h1> | |
<h3 class="mb-3">{{ error_message }}</h3> | |
{% if error_code == 404 %} | |
<p class="text-muted mb-4"> | |
The page you're looking for doesn't exist or has been moved. | |
</p> | |
{% elif error_code == 500 %} | |
<p class="text-muted mb-4"> | |
Something went wrong on our end. We're working to fix it. | |
</p> | |
{% else %} | |
<p class="text-muted mb-4"> | |
An error occurred while processing your request. | |
</p> | |
{% endif %} | |
<div class="d-flex justify-content-center gap-3"> | |
<a href="{{ url_for('index') }}" class="btn btn-success"> | |
<i class="fas fa-home me-2"></i>Go Home | |
</a> | |
<button onclick="history.back()" class="btn btn-outline-secondary"> | |
<i class="fas fa-arrow-left me-2"></i>Go Back | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
{% endblock %} | |