| {% extends "base.html" %} |
|
|
| {% block title %}{{ error }} - PyRunner{% endblock %} |
|
|
| {% block content %} |
| <div class="min-h-[calc(100vh-12rem)] flex items-center justify-center px-4 py-12"> |
| <div class="w-full max-w-md text-center"> |
| <div class="w-20 h-20 bg-code-red/20 rounded-full flex items-center justify-center mx-auto mb-6"> |
| <svg class="w-10 h-10 text-code-red" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"/> |
| </svg> |
| </div> |
|
|
| <h1 class="text-2xl font-bold text-code-text mb-4">{{ error }}</h1> |
|
|
| <p class="text-code-muted mb-8">{{ message }}</p> |
|
|
| <a |
| href="{% url 'auth:login' %}" |
| class="inline-flex items-center justify-center w-full py-3 px-4 bg-code-accent hover:bg-code-accent/90 text-white font-semibold rounded-lg transition-colors" |
| > |
| Request a new link |
| </a> |
| </div> |
| </div> |
| {% endblock %} |
|
|