25 lines
881 B
Plaintext
25 lines
881 B
Plaintext
|
{% extends "templates/base.njk" %}
|
||
|
|
||
|
{% block head %}
|
||
|
<title>qwik account manager</title>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
{# <img class="logo" src="https://qwik.space/assets/images/logo.svg" alt="qwik's logo"> #}
|
||
|
<header>Welcome! :D</header>
|
||
|
<h1>This is qwik's account manager!</h1>
|
||
|
<p>
|
||
|
This is the place to manage your one account that rules them all. ;p We at qwik have decided to use a central LDAP system for signing in to all services.
|
||
|
This means you only need one username and password! Remember to keep that password very secure and safe.
|
||
|
</p>
|
||
|
|
||
|
<h1>Managment</h1>
|
||
|
<p>
|
||
|
To manage your account you first need one! You can create one by clicking "Register!" below.
|
||
|
<br><br>
|
||
|
</p>
|
||
|
<div class="buttons">
|
||
|
<a href="/login">Log in!</a>
|
||
|
<a href="/register">Register!</a>
|
||
|
</div>
|
||
|
{% endblock %}
|