23 lines
1006 B
Plaintext
23 lines
1006 B
Plaintext
{% extends "base" %}
|
|
{% import "macros" as macros %}
|
|
|
|
{% block title %}
|
|
{{ "New Account" | _ }}
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
{% if enabled %}
|
|
<h1>{{ "Create an account" | _ }}</h1>
|
|
<form method="post">
|
|
{{ macros::input(name="username", label="Username", errors=errors, form=form, props='minlenght="1"') }}
|
|
{{ macros::input(name="email", label="Email", errors=errors, form=form, type="email") }}
|
|
{{ macros::input(name="password", label="Password", errors=errors, form=form, type="password", props='minlenght="8"') }}
|
|
{{ macros::input(name="password_confirmation", label="Password confirmation", errors=errors, form=form, type="password", props='minlenght="8"') }}
|
|
|
|
<input type="submit" value="{{ "Create account" | _ }}" />
|
|
</form>
|
|
{% else %}
|
|
<p class="center">{{ "Sorry, but registrations are closed on this instance. Try to find another one" | _ }}</p>
|
|
{% endif %}
|
|
{% endblock content %}
|