test v-show for login inputs

This commit is contained in:
Kuchenpirat 2025-07-19 20:06:30 +00:00
commit 064acd1289

View file

@ -68,7 +68,7 @@
<v-card-text class="w-100"> <v-card-text class="w-100">
<v-form @submit.prevent="authenticate"> <v-form @submit.prevent="authenticate">
<v-text-field <v-text-field
v-if="allowPasswordLogin" v-show="allowPasswordLogin"
v-model="form.email" v-model="form.email"
:prepend-inner-icon="$globals.icons.email" :prepend-inner-icon="$globals.icons.email"
variant="solo-filled" variant="solo-filled"
@ -81,7 +81,7 @@
type="text" type="text"
/> />
<v-text-field <v-text-field
v-if="allowPasswordLogin" v-show="allowPasswordLogin"
id="password" id="password"
v-model="form.password" v-model="form.password"
:prepend-inner-icon="$globals.icons.lock" :prepend-inner-icon="$globals.icons.lock"