add password toggle icon for all password inputs & use share folder checkbox for remember password in login page.

This commit is contained in:
2026-07-10 19:04:10 +03:30
parent 4c3aea2b5c
commit 65cd548a9a
11 changed files with 113 additions and 14 deletions

View File

@@ -93,6 +93,11 @@ function AcceptInviteContent() {
}
}
const passwordToggleLabels = {
show: t('showPassword'),
hide: t('hidePassword'),
};
return (
<div className="min-h-screen app-web-bg flex items-center justify-center p-4">
<div className="w-full max-w-md surface-card p-6 space-y-5">
@@ -134,12 +139,14 @@ function AcceptInviteContent() {
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
passwordToggleLabels={passwordToggleLabels}
/>
<Input
label={t('labelConfirmPassword')}
type="password"
value={confirmPassword}
onChange={(e) => setConfirmPassword(e.target.value)}
passwordToggleLabels={passwordToggleLabels}
/>
<Button type="button" fullWidth isLoading={submitting} onClick={() => void onAccept()}>
{t('activateAccount')}