You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
435 B
16 lines
435 B
{% raw %}
|
|
{% extends "layout.html" %}
|
|
|
|
{% block page_title %}Unauthorized{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="jumbotron">
|
|
<div class="text-center">
|
|
<h1>401</h1>
|
|
<p>You are not authorized to see this page. Please <a href="{{ url_for('public.home')}}">log in</a> or
|
|
<a href="{{ url_for('public.register') }}">create a new account</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% endraw %}
|
|
|