{% extends '@OroUser/layout.html.twig' %} {% form_theme form with '@OroUI/Form/login.html.twig' %} {% block bodyClass %}login-page{% endblock %} {% block content %}
{% set resetLabel = 'Reset'|trans %} {% set cancelLabel = 'Cancel'|trans %} {% set showLabels = (resetLabel|length <= 9) and (cancelLabel|length <= 9) %} {% set layoutName = showLabels ? 'form-row-layout' : 'form-column-layout' %} {{ form_start(form, { 'action': path('oro_user_reset_reset', { token: token }), 'attr': { 'class': 'form-vertical form-signin form-signin--reset ' ~ layoutName } }) }}

{{ 'Password Reset'|trans }}

{{ form_end(form) }}
{% endblock %}