1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00
AdvLabDB/advlabdb/templates/registered.html

19 lines
281 B
HTML
Raw Normal View History

{% set title = "Registered" %}
2021-03-31 23:04:21 +00:00
{% 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 %}