]> BookStack Code Mirror - bookstack/blobdiff - app/Http/Controllers/Auth/MfaTotpController.php
Fixed linting and failing test issues from dropzone work
[bookstack] / app / Http / Controllers / Auth / MfaTotpController.php
index 5644f02688e8618a99e0599bb60eb3cb1b68f82e..a4cb63155a138f9b172bca736caeaace79ddb030 100644 (file)
@@ -34,6 +34,8 @@ class MfaTotpController extends Controller
         $qrCodeUrl = $totp->generateUrl($totpSecret, $this->currentOrLastAttemptedUser());
         $svg = $totp->generateQrCodeSvg($qrCodeUrl);
 
+        $this->setPageTitle(trans('auth.mfa_gen_totp_title'));
+
         return view('mfa.totp-generate', [
             'url' => $qrCodeUrl,
             'svg' => $svg,