Type Alias: MountForgotPassword()
MountForgotPassword = (
payload
) =>Promise
<void
>
Displays a modal dialog for password recovery.
This method renders a complete forgot password flow, allowing users to request a password reset and enter the verification code.
NOTE: This method is deprecated. Please use the unified mount
method instead,
or the <mmq-auth> web component for new implementations.
Parameters
payload
Returns
Promise
<void
>
Example
// Deprecated approach
window.mimeeqAuth.mountForgotPassword({
uid: 'forgot-password-container',
customerId: 'customer123',
locale: 'en'
});
// Recommended approach using mount
const mountRoot = await window.mimeeqAuth.mount({
CDNPath: 'https://cdn.example.com',
baseURL: 'https://api.example.com',
customerId: 'customer123',
node: document.getElementById('auth-container'),
uid: 'forgot-password'
});
mountRoot.render({
embedType: 'FORGOT_PASSWORD'
});
Deprecated
Please use the unified mount
method instead, or the <mmq-auth> web component