Disable autocomplete on authentication and security-related forms to prevent browsers from storing sensitive credentials. This affects sign-in, password reset, account security, and onboarding forms across admin, web, and space apps. Modified components: - Auth forms (email, password, unique code, forgot/reset/set password) - Account security pages - Instance setup and profile onboarding - Shared UI components (auth-input, password-input)
17 lines
786 B
TypeScript
17 lines
786 B
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
export { AuthForm } from "./auth-form";
|
|
export { AuthInput } from "./auth-input";
|
|
export { AuthPasswordInput } from "./auth-password-input";
|
|
export { AuthConfirmPasswordInput } from "./auth-confirm-password-input";
|
|
export { AuthForgotPassword } from "./auth-forgot-password";
|
|
|
|
export type { AuthFormProps, AuthFormData, AuthMode } from "./auth-form";
|
|
export type { TAuthInputProps } from "./auth-input";
|
|
export type { TAuthPasswordInputProps } from "./auth-password-input";
|
|
export type { TAuthConfirmPasswordInputProps } from "./auth-confirm-password-input";
|
|
export type { AuthForgotPasswordProps } from "./auth-forgot-password";
|