mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-20 10:31:17 +00:00
18 lines
770 B
Text
18 lines
770 B
Text
{% extends "base" %}
|
|
{% import "macros" as macros %}
|
|
|
|
{% block title %}
|
|
{{ "New Account" | _ }}
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<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>
|
|
{% endblock content %}
|