Compare commits
4 Commits
develop
...
chore/mfa-
Author | SHA1 | Date |
---|---|---|
Mark Felder | 41ba90904d | |
Mark Felder | 26c1196a16 | |
Mark Felder | e242684d1a | |
Mark Felder | 1be7180214 |
|
@ -16,9 +16,16 @@
|
||||||
{{ $t('login.authentication_code') }}
|
{{ $t('login.authentication_code') }}
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
id="code"
|
autocomplete="one-time-code"
|
||||||
v-model="code"
|
autocorrect="off"
|
||||||
|
autocapitalize="off"
|
||||||
|
autofocus="true"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
|
id="totp"
|
||||||
|
name="totp"
|
||||||
|
spellcheck="false"
|
||||||
|
type="text"
|
||||||
|
v-model="code"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -97,8 +97,15 @@
|
||||||
<h4>{{ $t('general.verify') }}</h4>
|
<h4>{{ $t('general.verify') }}</h4>
|
||||||
<p>{{ $t('settings.mfa.verify.desc') }}</p>
|
<p>{{ $t('settings.mfa.verify.desc') }}</p>
|
||||||
<input
|
<input
|
||||||
v-model="otpConfirmToken"
|
autocomplete="one-time-code"
|
||||||
|
autocorrect="off"
|
||||||
|
autocapitalize="off"
|
||||||
|
id="totp"
|
||||||
|
name="totp"
|
||||||
|
pattern="[0-9]*"
|
||||||
|
spellcheck="false"
|
||||||
type="text"
|
type="text"
|
||||||
|
v-model="otpConfirmToken"
|
||||||
>
|
>
|
||||||
|
|
||||||
<p>{{ $t('settings.enter_current_password_to_confirm') }}:</p>
|
<p>{{ $t('settings.enter_current_password_to_confirm') }}:</p>
|
||||||
|
|
|
@ -72,7 +72,7 @@
|
||||||
{{ changePasswordError }}
|
{{ changePasswordError }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
<mfa />
|
||||||
<div class="setting-item">
|
<div class="setting-item">
|
||||||
<h2>{{ $t('settings.oauth_tokens') }}</h2>
|
<h2>{{ $t('settings.oauth_tokens') }}</h2>
|
||||||
<table class="oauth-tokens">
|
<table class="oauth-tokens">
|
||||||
|
@ -102,7 +102,6 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<mfa />
|
|
||||||
<div class="setting-item">
|
<div class="setting-item">
|
||||||
<h2>{{ $t('settings.delete_account') }}</h2>
|
<h2>{{ $t('settings.delete_account') }}</h2>
|
||||||
<p v-if="!deletingAccount">
|
<p v-if="!deletingAccount">
|
||||||
|
|
Loading…
Reference in New Issue