16 lines
703 B
HTML
16 lines
703 B
HTML
{% extends "layouts/base.html" %}
|
|
{% block title %}{{ _('429 Too Many Requests') }} - UdeS team manager{% endblock %}
|
|
{% block page_title %}{{ _('Rate Limit Exceeded') }}{% endblock %}
|
|
{% block content %}
|
|
<div class="error-container">
|
|
<div class="error-icon">
|
|
<i class="fas fa-hourglass-half"></i>
|
|
</div>
|
|
<h2>{{ _('429 — Too Many Requests') }}</h2>
|
|
<p>{{ _('You have sent too many requests in a short period. Please wait a moment 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 %}
|