Skip to content

Commit

Permalink
IBX-5620: Fixed validation in change password
Browse files Browse the repository at this point in the history
  • Loading branch information
dew326 committed May 17, 2023
1 parent 2ed6791 commit 08af902
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,16 @@
</div>
</div>
{%- endblock %}

{%- block form_errors -%}
{%- if errors|length > 0 -%}
{%- for error in errors -%}
<em class="ibexa-field-edit__error ibexa-form-error__row">
<svg class="ibexa-icon ibexa-icon--small ibexa-form-error__icon">
<use xlink:href="{{ ibexa_icon_path('warning-triangle') }}"></use>
</svg>
{{ error.message }}
</em>
{%- endfor -%}
{%- endif -%}
{%- endblock -%}

0 comments on commit 08af902

Please sign in to comment.