diff --git a/frontend/src/pages/login.vue b/frontend/src/pages/login.vue index d4a5193e9..44ca1521b 100644 --- a/frontend/src/pages/login.vue +++ b/frontend/src/pages/login.vue @@ -18,6 +18,7 @@ :label="$gettext('Name')" browser-autocomplete="off" color="secondary-dark" + class="input-name" placeholder="••••••••" > @@ -31,6 +32,7 @@ browser-autocomplete="off" color="secondary-dark" placeholder="••••••••" + class="input-password" :append-icon="showPassword ? 'visibility' : 'visibility_off'" @click:append="showPassword = !showPassword" @keyup.enter.native="login" @@ -38,7 +40,7 @@ diff --git a/frontend/src/pages/settings/account.vue b/frontend/src/pages/settings/account.vue index c00e5fba7..92db8c2a0 100644 --- a/frontend/src/pages/settings/account.vue +++ b/frontend/src/pages/settings/account.vue @@ -12,6 +12,7 @@ :disabled="busy" browser-autocomplete="off" :label="$gettext('Current Password')" + class="input-current-password" color="secondary-dark" placeholder="••••••••" > @@ -25,6 +26,7 @@ :disabled="busy" browser-autocomplete="off" :label="$gettext('New Password')" + class="input-new-password" color="secondary-dark" placeholder="••••••••" :hint="$gettext('At least 6 characters.')" @@ -39,6 +41,7 @@ :disabled="busy" browser-autocomplete="off" :label="$gettext('Retype Password')" + class="input-retype-password" color="secondary-dark" placeholder="••••••••" :hint="$gettext('Please confirm your new password.')"