academon/templates/core/frontend/dashboard.html
2022-08-08 09:43:31 +00:00

24 lines
905 B
HTML

{% extends "core/base.html" %}
{% block content %}
{% if not user.is_staff %}
<div class="card">
<div class="card-header">
<h3 class="card-title">Wait for approval</h3>
<div class="card-tools">
</div>
</div>
<div class="card-body">
Hey there!<br><br>
This seems to be the first time you log in to AcadeMon - welcome!<br><br>
For security reasons, your account has to be verified by an administrator before you can access any sensitive data. Don't worry, the administrators were notified about your arrival and will be in touch with you shortly.<br><br>
Have a nice day!
</div>
<div class="card-footer">
Your AcadeMon Administrators
</div>
</div>
{% else %}
{% endif %}
{% endblock %}