spPasswordResetRequestForm
stormpath
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.
<ANY sp-password-reset-request-form
template-url="{string}">
...
</ANY>
| Param | Type | Details |
|---|---|---|
| template-url | string | An alternate template URL if you want to use your own template for the form. |
<!-- 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>