35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
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>
|
|
Here you can manage your account...
|
|
</p>
|
|
|
|
<h2>Change password:</h2>
|
|
<form action="/auth/changePass" method="post">
|
|
<label for="oldPass">Current password:</label>
|
|
<input type="password" name="oldPass">
|
|
|
|
<label for="newPass">New password:</label>
|
|
<input type="password" name="newPass">
|
|
|
|
<input type="submit" value="Change password!">
|
|
</form>
|
|
|
|
<h2>I want to change my username</h2>
|
|
<p>
|
|
That is sadly not doable through this manager. Try messaging BurnyLlama (XMPP: burnyllama@qwik.space) and see if there are any options. (You can also just create a new account...)
|
|
</p>
|
|
|
|
<h2>I want to delete my account!</h2>
|
|
<p>
|
|
Contact mew, BurnyLlama (XMPP: burnyllama@qwik.space), and I will help you delete your account.
|
|
</p>
|
|
{% endblock %} |