mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-03-17 14:26:18 +00:00
8 lines
370 B
HTML
8 lines
370 B
HTML
{% 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 %}
|