mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
c4ccd82f63
It was based on 5 words from a 2048 word list, which is only the same as a 11 character password
50 lines
1.6 KiB
HTML
50 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-left" 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.")) }}
|
|
|
|
{{ render_field(form.password, hint=_("Must be at least 8 characters long.")) }}
|
|
|
|
<p>
|
|
<img src="/static/puzzle.png" />
|
|
</p>
|
|
{{ render_field(form.question, hint=_("Please prove that you are human")) }}
|
|
|
|
{% set label %}
|
|
{{ _("I agree to the ") }}
|
|
<a href="{{ url_for('flatpage', path='privacy_policy') }} ">
|
|
{{ _("Privacy Policy") }}
|
|
</a>
|
|
{% endset %}
|
|
{{ render_checkbox_field(form.agree, label=label, class_="my-4") }}
|
|
|
|
{# Submit button #}
|
|
<p>
|
|
{{ render_submit_field(form.submit, tabindex=180) }}
|
|
</p>
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %}
|