19 lines
604 B
HTML
19 lines
604 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}403 - Forbidden{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container text-center mt-5">
|
|
<h1 class="display-4 text-danger">403</h1>
|
|
<p class="lead">You do not have permission to view this paste.</p>
|
|
<p>If you believe this is a mistake, please contact support.</p>
|
|
|
|
{% if current_user.is_authenticated %}
|
|
<a href="{{ url_for('user_dashboard') }}" class="btn btn-primary mt-3">Back to Dashboard</a>
|
|
{% else %}
|
|
<a href="{{ url_for('login') }}" class="btn btn-secondary mt-3">Login</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
|