implement rate limiting for authentication routes and add custom error handling page

This commit is contained in:
Eduardo Silva
2026-03-16 13:42:20 -03:00
parent 685b4eb971
commit e1f128f217
6 changed files with 61 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
{% extends "base.html" %}
{% block title %}Too many attempts — Gatekeeper{% endblock %}
{% block content %}
<h1 class="card-title">Too many attempts</h1>
<p class="card-subtitle">You have made too many requests in a short period. Please wait a moment before trying again.</p>
<a class="btn btn-secondary" href="{{ back_url }}">Try again</a>
{% endblock %}