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() !!} - - - {!! decrypt($request->user()->two_factor_secret) !!} - - 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 -