mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-19 01:04:25 +08:00
fix incorrect style
This commit is contained in:
@@ -93,31 +93,27 @@
|
|||||||
:opened="show2faSheet" @sheet:closed="show2faSheet = false"
|
:opened="show2faSheet" @sheet:closed="show2faSheet = false"
|
||||||
>
|
>
|
||||||
<f7-page-content>
|
<f7-page-content>
|
||||||
<div class="display-flex padding justify-content-space-between align-items-center">
|
<div class="display-flex padding-horizontal padding-top justify-content-space-between align-items-center">
|
||||||
<div class="ebk-sheet-title"><b>{{ tt('Two-Factor Authentication') }}</b></div>
|
<div class="ebk-sheet-title"><b>{{ tt('Two-Factor Authentication') }}</b></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="padding-horizontal padding-bottom">
|
<div class="padding-horizontal padding-bottom">
|
||||||
<f7-list strong class="no-margin">
|
<f7-list class="no-margin">
|
||||||
<f7-list-input
|
<f7-list-input
|
||||||
type="number"
|
type="number"
|
||||||
autocomplete="one-time-code"
|
autocomplete="one-time-code"
|
||||||
outline
|
outline
|
||||||
floating-label
|
|
||||||
clear-button
|
clear-button
|
||||||
class="no-margin no-padding-bottom"
|
class="no-margin no-padding-bottom"
|
||||||
v-if="twoFAVerifyType === 'passcode'"
|
v-if="twoFAVerifyType === 'passcode'"
|
||||||
:label="tt('Passcode')"
|
|
||||||
:placeholder="tt('Passcode')"
|
:placeholder="tt('Passcode')"
|
||||||
v-model:value="passcode"
|
v-model:value="passcode"
|
||||||
@keyup.enter="verify"
|
@keyup.enter="verify"
|
||||||
></f7-list-input>
|
></f7-list-input>
|
||||||
<f7-list-input
|
<f7-list-input
|
||||||
outline
|
outline
|
||||||
floating-label
|
|
||||||
clear-button
|
clear-button
|
||||||
class="no-margin no-padding-bottom"
|
class="no-margin no-padding-bottom"
|
||||||
v-if="twoFAVerifyType === 'backupcode'"
|
v-if="twoFAVerifyType === 'backupcode'"
|
||||||
:label="tt('Backup Code')"
|
|
||||||
:placeholder="tt('Backup Code')"
|
:placeholder="tt('Backup Code')"
|
||||||
v-model:value="backupCode"
|
v-model:value="backupCode"
|
||||||
@keyup.enter="verify"
|
@keyup.enter="verify"
|
||||||
@@ -144,15 +140,13 @@
|
|||||||
<p class="no-margin">
|
<p class="no-margin">
|
||||||
<span>{{ tt('Please enter your email address used for registration and we\'ll send you an email with a reset password link') }}</span>
|
<span>{{ tt('Please enter your email address used for registration and we\'ll send you an email with a reset password link') }}</span>
|
||||||
</p>
|
</p>
|
||||||
<f7-list strong class="no-margin">
|
<f7-list class="no-margin">
|
||||||
<f7-list-input
|
<f7-list-input
|
||||||
type="email"
|
type="email"
|
||||||
autocomplete="email"
|
autocomplete="email"
|
||||||
outline
|
outline
|
||||||
floating-label
|
|
||||||
clear-button
|
clear-button
|
||||||
class="no-margin no-padding-bottom"
|
class="no-margin no-padding-bottom"
|
||||||
:label="tt('E-mail')"
|
|
||||||
:placeholder="tt('Your email address')"
|
:placeholder="tt('Your email address')"
|
||||||
v-model:value="forgetPasswordEmail"
|
v-model:value="forgetPasswordEmail"
|
||||||
@keyup.enter="requestResetPassword"
|
@keyup.enter="requestResetPassword"
|
||||||
|
|||||||
Reference in New Issue
Block a user