- fixed issue with collections not working without tags (fixes #75) - centered card title (fixes #74) - added buttons to /unauthorized to guide user to /login or back
27 lines
737 B
HTML
27 lines
737 B
HTML
{% extends "main/base.html" %}
|
|
{% from 'global_macros.html' import button %}
|
|
|
|
|
|
{% block content %}
|
|
<div class="row center-align mt-10">
|
|
<div class="col s12">
|
|
<i class="material-icons-outlined theme-failure-text" style="font-size: 8rem">warning</i>
|
|
<h4>Unauthorized</h4>
|
|
|
|
<p>This user account is not in the access group allowed to view this page.</p>
|
|
|
|
{{ button(
|
|
float="center",
|
|
href=url_for('user_system.login'),
|
|
text="Go to login"
|
|
) }}
|
|
|
|
{{ button(
|
|
float="center",
|
|
href="javascript:history.back()",
|
|
text="Go back"
|
|
) }}
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|