kappa123/kappa123/client/templates/errors/401.html

13 lines
309 B
HTML

{% extends "_base.html" %}
{% block page_title %}- Unauthorized{% endblock %}
{% block content %}
<div class="jumbotron">
<div class="text-center">
<h1>401</h1>
<p>You are not authorized to view this page. Please <a href="{{ url_for('user.login')}}">log in</a>.</p>
</div>
</div>
{% endblock %}