mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
17 lines
250 B
HTML
17 lines
250 B
HTML
{% extends "layout.html" %}
|
|
{% block content %}
|
|
<h3>
|
|
Registered as
|
|
{% if admin %}
|
|
<strong>Admin</strong>
|
|
{% else %}
|
|
Assistant
|
|
{% endif %}
|
|
!
|
|
</h3>
|
|
<p>
|
|
Email: {{email}}
|
|
<br>
|
|
Random password: {{password}}
|
|
</p>
|
|
{% endblock content %}
|