48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ _("Register") }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% from "macros/forms.html" import render_field, render_checkbox_field, render_submit_field %}
|
|
|
|
<div class="card w-50 text-start" style="margin: 2em auto;">
|
|
<h2 class="card-header">{{ self.title() }}</h2>
|
|
|
|
<form action="" method="POST" class="form card-body" role="form">
|
|
{{ form.hidden_tag() }}
|
|
|
|
{{ render_field(form.username, pattern="[a-zA-Z0-9._-]+", title=_("Only a-zA-Z0-9._ allowed"),
|
|
hint=_("Only alphanumeric characters, periods, underscores, and minuses are allowed (a-zA-Z0-9._)")) }}
|
|
|
|
{{ render_field(form.display_name,
|
|
hint=_("Human readable name, defaults to username if not specified. This can be changed later."),
|
|
placeholder=_("Same as username")) }}
|
|
|
|
{{ render_field(form.email,
|
|
hint=_("Your email is needed to recover your account if you forget your password and to send (configurable) notifications. ") +
|
|
_("Your email will never be shared with a third-party.")) }}
|
|
<p>
|
|
{{ _("Note: protonmail is unsupported by ContentDB. <a href='https://forum.luanti.org/viewtopic.php?t=30709'>More info</a>.") }}
|
|
</p>
|
|
|
|
{{ render_field(form.password, hint=_("Must be at least 12 characters long.")) }}
|
|
|
|
<p>
|
|
<img src="/static/puzzle.png" />
|
|
</p>
|
|
{{ render_field(form.question, hint=_("Please prove that you are human")) }}
|
|
|
|
<p>
|
|
{{ _("By signing up, you agree to the <a href='/terms/' target='_blank'>Terms of Service</a> and <a href='/privacy_policy/' target='_blank'>Privacy Policy</a>.") }}
|
|
</p>
|
|
|
|
<p>
|
|
{{ render_submit_field(form.submit, tabindex=180) }}
|
|
</p>
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %}
|