Tests: Add classes for testing

This commit is contained in:
theresa 2021-02-04 14:40:05 +01:00
parent bf592bdf7c
commit 9620c07b08
2 changed files with 6 additions and 1 deletions
frontend/src/pages

View file

@ -18,6 +18,7 @@
:label="$gettext('Name')"
browser-autocomplete="off"
color="secondary-dark"
class="input-name"
placeholder="••••••••"
></v-text-field>
</v-flex>
@ -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 @@
</v-flex>
<v-flex xs12 class="px-2 py-3">
<v-btn color="primary-button"
class="white--text ml-0"
class="white--text ml-0 action-confirm"
depressed
:disabled="loading || !password || !username"
@click.stop="login">

View file

@ -12,6 +12,7 @@
:disabled="busy"
browser-autocomplete="off"
:label="$gettext('Current Password')"
class="input-current-password"
color="secondary-dark"
placeholder="••••••••"
></v-text-field>
@ -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.')"