forbidden_page.html 293 B

123456789101112
  1. {% set page_title = "No Access - 403" %}
  2. {% extends "layout.html" %}
  3. {% block content %}
  4. <div class="well">
  5. <h1>Forbidden Page</h1>
  6. <p>You do not have the permission to view this page.</p>
  7. <p><a href="{{url_for('forum.index')}}">Back to the Forums</a></p>
  8. </div>
  9. {% endblock %}