How to Remove the "Forgot Password" Link from the New Universal Login Page

Overview

This article explains how to remove the "Forgot Password?" link from the New Universal Login page. This is for administrators who manage the password reset flow outside of Auth0.

Applies To
  • Password Reset Flow
  • Remove the Forgot Password Link 
  • New Universal Login
  • Database Connections
  • Management API
Solution

The "Forgot Password?" link can be removed by enabling the disable_self_service_change_password option within a database connection's settings. 


This option is not visible in the dashboard, so the only way to change it is to send a PATCH request to the Management API with options.disable_self_service_change_password set to true

  • PATCH: https://DomainName/api/v2/connections/{connection_id}

NOTE: If using the options parameter, the whole options object will be overridden, so ensure that all parameters are present in the Request body:

{
  "options": {
    "disable_self_service_change_password": true,
    //rest of options object
  }


Refer to the video below.


 

Related References

Recommended content

No recommended content found...