kappa123/kappa123/client/templates/errors/403.html

13 lines
309 B
HTML
Raw Normal View History

2016-06-27 17:43:14 -07: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:21:56 -07:00
<p>You are not authorized to view this page. Please <a href="{{ url_for('user.login')}}">log in</a>.</p>
2016-06-27 17:43:14 -07:00
</div>
</div>
{% endblock %}