LWT JavaScript API
    Preparing search index...

    Alpine state for the profile page.

    interface ProfileAppData {
        confirmPassword: string;
        currentPassword: string;
        email: string;
        emailVerified: boolean;
        isLoading: boolean;
        isSavingPassword: boolean;
        isSavingProfile: boolean;
        newPassword: string;
        passwordError: string;
        passwordSuccess: string;
        profileError: string;
        profileSuccess: string;
        username: string;
        init(): Promise<void>;
        load(): Promise<void>;
        savePassword(): Promise<void>;
        saveProfile(): Promise<void>;
    }
    Index
    confirmPassword: string
    currentPassword: string
    email: string
    emailVerified: boolean
    isLoading: boolean
    isSavingPassword: boolean
    isSavingProfile: boolean
    newPassword: string
    passwordError: string
    passwordSuccess: string
    profileError: string
    profileSuccess: string
    username: string