How to redirect keycloak to my website after password reset

Hi guys , i am using keycloak apis for my website authentication. Please suggest me method to redirect the page to my own website after updating the new password using this endpoint
endponit : http://localhost:8080/auth/admin/realms/{realms}/users/{id}/execute-actions-email

According to the Admin API documentation for that method (Keycloak Admin REST API), you can call it with a redirect_uri parameter, which will cause the user to redirect to that page after updating their password. Note: “Redirect uri must be a valid uri for the particular clientId.”

But what about the built-in Keycloak log in form with “reset” password button in it?