Improve this doc View source

spPasswordResetRequestForm
directive in module stormpath

Description

This directive will render a pre-built form which prompts the user for their username/email. If an account is found, we will send them an email with a password reset link.

Usage

as attribute
<ANY sp-password-reset-request-form
     template-url="{string}">
   ...
</ANY>

Parameters

ParamTypeDetails
template-urlstring

An alternate template URL if you want to use your own template for the form.

Example

<!-- If you want to use the default template -->
<div class="container">
  <div sp-password-reset-request-form></div>
</div>

<!-- If you want to use your own template -->
<div class="container">
  <div sp-password-reset-request-form template-url="/path/to/my-custom-template.html"></div>
</div>