Spaces:
Sleeping
Sleeping
| {% extends "base.html" %} | |
| {% block title %}Too Many Requests - Chatty{% endblock %} | |
| {% block content %} | |
| <div class="error-container"> | |
| <div class="error-content"> | |
| <h1 class="error-code">429</h1> | |
| <h2 class="error-title">Too Many Attempts</h2> | |
| <p class="error-message"> | |
| You've made too many login attempts. Please wait 15 minutes before trying again. | |
| </p> | |
| <div class="error-actions"> | |
| <a href="{{ url_for('index') }}" class="error-button">Go Home</a> | |
| <button onclick="setTimeout(() => location.reload(), 900000)" class="error-button secondary">Wait & Retry</button> | |
| </div> | |
| </div> | |
| </div> | |
| {% endblock %} |