19 lines
761 B
HTML
19 lines
761 B
HTML
{% extends "common/base.html" %}
|
|
|
|
{% block title %}Authentication Required - 401{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container mx-auto px-4 py-16 text-center">
|
|
<h1 class="display-1 fw-bold" style="color: var(--primary-color);">401</h1>
|
|
<h2 class="mb-4">Authentication Required</h2>
|
|
<p class="mb-4 text-muted">Please log in to access this resource.</p>
|
|
<div class="d-flex justify-content-center gap-3">
|
|
<a href="{{ url_for('auth.login') }}" class="btn btn-primary">
|
|
<i class="fas fa-sign-in-alt me-2"></i>Log In
|
|
</a>
|
|
<button onclick="window.history.back()" class="btn btn-outline-primary">
|
|
<i class="fas fa-arrow-left me-2"></i>Go Back
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |