Newer
Older
alert / js / node_modules / flarum / forum / components / ForgotPasswordModal.d.ts
@Réz István Réz István on 18 Nov 2021 563 bytes first commit
/**
 * The `ForgotPasswordModal` component displays a modal which allows the user to
 * enter their email address and request a link to reset their password.
 *
 * ### Attrs
 *
 * - `email`
 */
export default class ForgotPasswordModal extends Modal {
    /**
     * The value of the email input.
     *
     * @type {Function}
     */
    email: Function;
    /**
     * Whether or not the password reset email was sent successfully.
     *
     * @type {Boolean}
     */
    success: boolean;
    alert: any;
}
import Modal from "../../common/components/Modal";