]> git.localhorst.tv Git - alttp.git/blob - resources/views/auth/confirm-password.blade.php
add discord auth
[alttp.git] / resources / views / auth / confirm-password.blade.php
1 <x-guest-layout>
2     <x-auth-card>
3         <x-slot name="logo">
4             <a href="/">
5                 <x-application-logo class="w-20 h-20 fill-current text-gray-500" />
6             </a>
7         </x-slot>
8
9         <div class="mb-4 text-sm text-gray-600">
10             {{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
11         </div>
12
13         <!-- Validation Errors -->
14         <x-auth-validation-errors class="mb-4" :errors="$errors" />
15
16         <form method="GET" action="{{ route('larascord.refresh_token') }}">
17             @csrf
18
19             <div class="flex justify-end mt-4">
20                 <x-button>
21                     {{ __('Confirm') }}
22                 </x-button>
23             </div>
24         </form>
25     </x-auth-card>
26 </x-guest-layout>