Compare commits

..

No commits in common. "a38954cf701cb2de7ef450a054215448e646c28a" and "35d8433e23a46c88658692a7fe487ac4ebdb9b78" have entirely different histories.

1 changed files with 3 additions and 10 deletions

View File

@ -6,10 +6,9 @@
</q-toolbar>
<q-card-section>
<q-form @submit="doLogin">
<q-form class="q-gutter-md" @submit="doLogin">
<q-input
v-model="userid"
class="q-pa-md"
filled
label="Benutzername oder E-Mail"
autocomplete="username"
@ -18,26 +17,20 @@
/>
<password-input
v-model="password"
class="q-px-md q-pt-md q-pb-none"
filled
label="Passwort"
autocomplete="cureent-password"
:rules="[notEmpty]"
tabindex="2"
/>
<div class="full-width row justify-end q-px-md">
<div class="row justify-between">
<q-btn
label="Passwort vergessen?"
label="Passwort vergessen"
type="a"
color="secondary"
tabindex="4"
flat
dense
size="sm"
@click="doReset"
/>
</div>
<div class="full-width row justify-end q-px-md q-pt-md">
<q-btn label="Login" type="submit" color="primary" tabindex="3" />
</div>
</q-form>