11 lines
385 B
HTML
11 lines
385 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="container mt-5">
|
|
<div class="alert alert-danger">
|
|
<h4 class="alert-heading">An error occurred!</h4>
|
|
<p>Sorry, something went wrong. Please try again later or contact the administrator.</p>
|
|
</div>
|
|
<a href="{{ url_for('user.home') }}" class="btn btn-primary">Return to Home</a>
|
|
</div>
|
|
{% endblock %} |