From f1eddae379bef648822132de0a8775cc4676e209 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 11 Jan 2024 14:24:54 +0100 Subject: [PATCH] cleanup --- resources/views/command-center.blade.php | 12 ---- resources/views/profile.blade.php | 83 ------------------------ 2 files changed, 95 deletions(-) delete mode 100644 resources/views/command-center.blade.php delete mode 100644 resources/views/profile.blade.php diff --git a/resources/views/command-center.blade.php b/resources/views/command-center.blade.php deleted file mode 100644 index 33474eac6..000000000 --- a/resources/views/command-center.blade.php +++ /dev/null @@ -1,12 +0,0 @@ - -

Command Center

-
Execute commands on your servers without leaving the browser.
- @if ($servers->count() > 0) - - @else -
-
No servers found. Without a server, you won't be able to do much.
- -
- @endif -
diff --git a/resources/views/profile.blade.php b/resources/views/profile.blade.php deleted file mode 100644 index 9ad4d347f..000000000 --- a/resources/views/profile.blade.php +++ /dev/null @@ -1,83 +0,0 @@ - -

Profile

-
Your user profile settings.
- -

Subscription

- Check in Team Settings -

Two-factor Authentication

- @if (session('status') == 'two-factor-authentication-enabled') -
- Please finish configuring two factor authentication below. Read the QR code or enter the secret key - manually. -
-
-
- @csrf - - Validate 2FA - -
-
{!! $request->user()->twoFactorQrCodeSvg() !!}
-
- - Show secret key to manually - enter -
-
-
- @elseif(session('status') == 'two-factor-authentication-confirmed') -
- Two factor authentication confirmed and enabled successfully. -
-
-
Here are the recovery codes for your account. Please store them in a secure - location. -
-
- @foreach ($request->user()->recoveryCodes() as $code) -
{{ $code }}
- @endforeach -
-
- @else - @if ($request->user()->two_factor_confirmed_at) -
Two factor authentication is enabled.
-
-
- @csrf - @method ('DELETE') - Disable -
-
- @csrf - Regenerate Recovery Codes -
-
- @if (session('status') == 'recovery-codes-generated') -
-
Here are the recovery codes for your account. Please store them in a - secure - location. -
-
- @foreach ($request->user()->recoveryCodes() as $code) -
{{ $code }}
- @endforeach -
-
- @endif - @else -
- @csrf - Configure 2FA -
- @endif - @endif - @if (session()->has('errors')) -
- Something went wrong. Please try again. -
- @endif -