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

13 lines
309 B
HTML
Raw Normal View History

2015-01-21 08:32:17 -08:00
{% extends "_base.html" %}
{% block page_title %}- Unauthorized{% endblock %}
{% block content %}
<div class="jumbotron">
<div class="text-center">
<h1>401</h1>
2017-07-01 12:11:44 -07:00
<p>You are not authorized to view this page. Please <a href="{{ url_for('user.login')}}">log in</a>.</p>
2015-01-21 08:32:17 -08:00
</div>
</div>
{% endblock %}