Files
docupulse/templates/common/403.html
2025-06-06 10:35:56 +02:00

19 lines
768 B
HTML

{% extends "common/base.html" %}
{% block title %}Access Denied - 403{% 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);">403</h1>
<h2 class="mb-4">Access Denied</h2>
<p class="mb-4 text-muted">Sorry, you don't have permission to access this resource.</p>
<div class="d-flex justify-content-center gap-3">
<a href="{{ url_for('main.dashboard') }}" class="btn btn-primary">
<i class="fas fa-home me-2"></i>Back to Dashboard
</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 %}