parent
82eca9190d
commit
0a2412525f
@ -0,0 +1,16 @@ |
||||
{% raw %} |
||||
{% extends "_layouts/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 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 %} |
@ -0,0 +1,14 @@ |
||||
{% raw %} |
||||
{% extends "_layouts/base.html" %} |
||||
|
||||
{% block page_title %}Server error{% endblock %} |
||||
|
||||
{% block content %} |
||||
<div class="jumbotron"> |
||||
<div class="text-center"> |
||||
<h1>500</h1> |
||||
<p>Sorry, something went wrong on our system. Don't panic, we are fixing it! Please try again later.</p> |
||||
</div> |
||||
</div> |
||||
{% endblock %} |
||||
{% endraw %} |
Loading…
Reference in new issue