confirm token in 2fa challenge

This commit is contained in:
Čarodej
2022-04-05 09:52:49 +02:00
parent 9f783fcd95
commit 10d8b592ea
13 changed files with 127 additions and 66 deletions
+1 -5
View File
@@ -131,12 +131,8 @@ return [
*/
'features' => [
// Features::registration(),
//Features::resetPasswords(),
// Features::emailVerification(),
Features::updateProfileInformation(),
//Features::updatePasswords(),
Features::twoFactorAuthentication([
'confirm' => true,
'confirmPassword' => true,
]),
],
+3 -1
View File
@@ -656,7 +656,6 @@ return [
'confirm_your_password' => 'Confirm Your Password',
'popup_2fa.help' => 'Scan the image above with the <b class="text-theme dark-text-theme">two-factor authentication app</b> on your phone.',
'confirm' => 'Confirm',
'popup_2fa.disappear_qr' => 'Really disappear this QR code?',
'popup_2fa.toaster_enabled' => 'Your 2FA was enabled successfully!',
'popup_2fa.toaster_disabled' => 'Your 2FA was disabled!',
'popup_2fa.switch_title' => 'Enable / Disable Two Factor Authentication',
@@ -938,5 +937,8 @@ return [
'server_settings' => 'Server / Settings',
'user_features' => 'User Features',
'upload_settings' => 'Upload Settings',
'set_up_2fa_app' => 'Set up Your Authenticator App',
'confirm_your_code' => 'Confirm Your Code',
'paste_code_from_2fa_app' => 'Paste the latest code from 2fa app...',
],
];
+2 -1
View File
@@ -1,7 +1,7 @@
<?php
return [
'version' => '2.0.13',
'version' => '2.0.14',
'is_demo' => env('APP_DEMO', false),
@@ -61,5 +61,6 @@ return [
'updates' => [
'2_0_10',
'2_0_13',
'2_0_14',
],
];