Forgot Password
This page provides examples of how to create custom “forgot password” pages for your application. The forgot password functionality allows users to request a password reset email when they can’t remember their current password.
Custom page with ForgotPassword
component
The ForgotPassword
component provides a complete form for users to request a password reset email. When a user submits their email, Stack Auth will send them an email with a link to reset their password.
Integration with Application Routing
To integrate the forgot password page with your application’s routing:
- Create a route for your forgot password page (e.g.,
/forgot-password
) - Configure Stack Auth to use your custom route in your
stack.ts
file:
This ensures that links to the forgot password page will direct users to your custom implementation. When a user submits their email, Stack Auth will send them an email with a link to the password reset page configured in your application.
Custom forgot password form
If you need more control over the forgot password process, you can build your own form. This approach allows you to customize the UI and error handling to match your application’s design.