This commit is contained in:
Saeed Vaziry
2024-03-24 09:56:34 +01:00
committed by GitHub
parent 884f18db63
commit 4d051330d6
1055 changed files with 14493 additions and 20278 deletions

View File

@ -4,21 +4,29 @@
<form method="POST">
@csrf
<div class="mb-4 text-sm text-gray-600 dark:text-gray-400">
{{ __('Please enter your recovery code') }}
{{ __("Please enter your recovery code") }}
</div>
<div>
<x-input-label for="recovery_code" :value="__('Recovery Code')" />
<x-text-input id="recovery_code" class="block mt-1 w-full" type="text" name="recovery_code" required autofocus autocomplete="recovery_code" />
<x-text-input
id="recovery_code"
class="mt-1 block w-full"
type="text"
name="recovery_code"
required
autofocus
autocomplete="recovery_code"
/>
<x-input-error :messages="$errors->get('recovery_code')" class="mt-2" />
</div>
<div class="flex items-center justify-end mt-4">
<div class="mt-4 flex items-center justify-end">
<x-secondary-button class="mr-2" x-on:click="recover = false">
{{ __('Login') }}
{{ __("Login") }}
</x-secondary-button>
<x-primary-button type="submit">
{{ __('Recover') }}
{{ __("Recover") }}
</x-primary-button>
</div>
</form>
@ -27,21 +35,29 @@
<form method="POST">
@csrf
<div class="mb-4 text-sm text-gray-600 dark:text-gray-400">
{{ __('Please confirm access to your account by entering the authentication code provided by your authenticator application.') }}
{{ __("Please confirm access to your account by entering the authentication code provided by your authenticator application.") }}
</div>
<div>
<x-input-label for="code" :value="__('Code')" />
<x-text-input id="code" class="block mt-1 w-full" type="text" name="code" required autofocus autocomplete="code" />
<x-text-input
id="code"
class="mt-1 block w-full"
type="text"
name="code"
required
autofocus
autocomplete="code"
/>
<x-input-error :messages="$errors->get('code')" class="mt-2" />
</div>
<div class="flex items-center justify-end mt-4">
<div class="mt-4 flex items-center justify-end">
<x-secondary-button class="mr-2" x-on:click="recover = true">
{{ __('Recover') }}
{{ __("Recover") }}
</x-secondary-button>
<x-primary-button type="submit">
{{ __('Login') }}
{{ __("Login") }}
</x-primary-button>
</div>
</form>