Set up your frame

Create an account or sign in to link this frame.

{# ── Register panel ────────────────────────────────────────────────────── #}
{{ form_start(reg_form, {action: path('setup_register', {mac: mac}), attr: {novalidate: 'novalidate'}}) }}
{{ form_label(reg_form.email) }} {{ form_widget(reg_form.email, {attr: { id: 'reg-email', 'aria-invalid': reg_form.email.vars.errors|length > 0 ? 'true' : 'false' }}) }} {% for error in reg_form.email.vars.errors %} {% endfor %}
{{ form_label(reg_form.plainPassword) }} {{ form_widget(reg_form.plainPassword, {attr: { id: 'reg-pass', 'aria-invalid': reg_form.plainPassword.vars.errors|length > 0 ? 'true' : 'false' }}) }} {% for error in reg_form.plainPassword.vars.errors %} {% endfor %}
{{ form_end(reg_form) }}
{# ── Login panel ───────────────────────────────────────────────────────── #}
{% if login_error %} {% endif %}