qwik-account-manager/views/pages/register.njk

29 lines
1.2 KiB
Plaintext

{% extends "templates/base.njk" %}
{% block head %}
<title>qwik account manager</title>
{% endblock %}
{% block body %}
<h1>Register account</h1>
<form action="/auth/register" method="post">
<label for="username">Username:</label>
<input type="text" id="username" name="username" placeholder="FancyFox89" autocomplete="off">
<p class="hint">The username must be alphanumeric and between 2-20 characters.</p>
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="VerySecurePassword;PleaseDon'tHackMe!LOL">
<p class="hint">There are no formal password requirements, but we recommend making a secure passphrase.</p>
<label for="captcha">Captcha:</label>
<img src="/auth/captcha" class="captcha">
<input type="text" id="captcha" name="captcha" placeholder="xxxxxx">
<p class="hint">Enter the text you see in the image.</p>
<p>
By registering you agree to qwik's <a href="https://qwik.space/articles/privacy_policy">Privacy Policy</a> and <a href="https://qwik.space/articles/terms_of_service">Terms of Service</a>.
</p>
<input type="submit" value="Register!">
</form>
{% endblock %}