# ForgotPasswordForm
This form should be used together with ResetPasswordForm.
In order to use this form:
- Add the following lines with these API urls to /pages/entities.json (opens new window):
"forgot-password": {
"url": "/security/forgot-password"
},
"reset-password": {
"url": "/security/reset-password"
}
- Create a new page in
/pages/forgot-password/
that uses the<ForgotPasswordForm />
component. - Create a new page in
/pages/reset-password/
that uses the<ResetPasswordForm />
component. - Open /backoffice.config.json (opens new window) and
set
features.forgotPassword
to true. - The
<LoginForm />
component will now display a "Forgot password?" link.