15 lines
570 B
Plaintext
15 lines
570 B
Plaintext
{% extends "templates/base.njk" %}
|
|
|
|
{% block head %}
|
|
<title>{{ user.name }}@qam</title>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
{# <img class="logo" src="https://qwik.space/assets/images/logo.svg" alt="qwik's logo"> #}
|
|
<header>Welcome {{ user.name }}! :D</header>
|
|
<h1>This is your account manager!</h1>
|
|
<p>
|
|
Currently no features are implemented, but we want to implement at least password changing.
|
|
It would also be nice to have proper account deletion. (For now, if you want to delete your account contact an admin!)
|
|
</p>
|
|
{% endblock %} |