Reset Password
URL
/learners/password/edit
Screenshot
Structure
reset_password.html.liquid
└── _header_minimal.html.liquid
└── _messages.html.liquid
Template Considerations
The Reset Password template exposes a reset_password_token
variable which returns an auto-generated token needed to authorize the action of changing the password.
Form
The Reset Password page uses an HTML form to submit the email address. Please make sure you're not overwriting its internals:
- the
action
andmethod
attributes on the<form>
HTML tag - the
form_authenticity_token
Liquid tag inside the<form>
HTML tag - the name attribute on the
<input>
HTML tags
Updated 15 days ago