16 lines
692 B
HTML
16 lines
692 B
HTML
{% extends "layouts/base.html" %}
|
|
{% block title %}{{ _('400 Bad Request') }} - UdeS team manager{% endblock %}
|
|
{% block page_title %}{{ _('Bad Request') }}{% endblock %}
|
|
{% block content %}
|
|
<div class="error-container">
|
|
<div class="error-icon">
|
|
<i class="fas fa-exclamation-triangle"></i>
|
|
</div>
|
|
<h2>{{ _('400 — Bad Request') }}</h2>
|
|
<p>{{ _('The request could not be understood by the server. Please check your input and try again.') }}</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-arrow-left"></i> {{ _('Go Back') }}
|
|
</a>
|
|
</div>
|
|
{% endblock %}
|