16 lines
665 B
HTML
16 lines
665 B
HTML
{% extends "layouts/base.html" %}
|
|
{% block title %}{{ _('404 Not Found') }} - UdeS team manager{% endblock %}
|
|
{% block page_title %}{{ _('Page Not Found') }}{% endblock %}
|
|
{% block content %}
|
|
<div class="error-container">
|
|
<div class="error-icon">
|
|
<i class="fas fa-search"></i>
|
|
</div>
|
|
<h2>{{ _('404 — Not Found') }}</h2>
|
|
<p>{{ _('The page you are looking for does not exist. It may have been moved or deleted.') }}</p>
|
|
<a href="{{ url_for('main.dashboard') if current_user.is_authenticated else url_for('auth.login') }}" class="btn btn-primary">
|
|
<i class="fas fa-home"></i> {{ _('Return Home') }}
|
|
</a>
|
|
</div>
|
|
{% endblock %}
|