mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-02-20 06:43:11 -05:00
test v-show for login inputs
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user