{% extends 'layouts/base.njk' %} {% set title = 'Example App - Hello world!' %} {% block scripts %} {% endblock %} {% block body %}

Register

Username

{{ macros.field(_locals, 'text', 'username', null, 'Choose your username', 'This cannot be changed later.', 'pattern="[0-9a-z_-]+" required') }}

Password

{{ macros.field(_locals, 'password', 'password', null, 'Choose a password', null, 'required') }} {{ macros.field(_locals, 'password', 'password_confirmation', null, 'Confirm your password', null, 'required') }}
{{ macros.field(_locals, 'checkbox', 'terms', null, 'I accept the terms of services', null, 'required') }} {{ macros.csrf(getCsrfToken) }}
{% endblock %}