Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The authentication_request_password_recovery_form tag requires that the authentication_field tag is called inside of it for each of the inputs:

  • 'email'

Accepts a parameter error_msg to use a custom message when requesting a password recovery does not work, for example when the wrong email is used

Example:

Code Block
{% authentication_request_password_recovery_form "dealers", error_msg: "custom error message" %}
    {% authentication_field "email", class: "form-field" %}
    <input type="submit" value="Update password!">
{% endauthentication_request_password_recovery_form %}

...