rewrite
This commit is contained in:
16
templates/403.html
Normal file
16
templates/403.html
Normal file
@@ -0,0 +1,16 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Access Denied{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="container mt-5">
|
||||
<div class="text-center">
|
||||
<h1 style="font-size: 72px; color: #dc3545;">403</h1>
|
||||
<h2>Access Denied</h2>
|
||||
<p class="text-muted">You don't have permission to access this resource.</p>
|
||||
<a href="{{ url_for('main.index') }}" class="btn btn-primary">
|
||||
<i class="bi bi-house"></i> Go Home
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user