fix: remove autofocuses

This commit is contained in:
Andras Bacsai
2024-10-01 21:33:44 +02:00
parent 93a0725a4e
commit 223cd37031
15 changed files with 16 additions and 16 deletions

View File

@@ -12,7 +12,7 @@
@if (is_transactional_emails_active())
<form action="/forgot-password" method="POST" class="flex flex-col gap-2">
@csrf
<x-forms.input required type="email" name="email" label="{{ __('input.email') }}" autofocus />
<x-forms.input required type="email" name="email" label="{{ __('input.email') }}" />
<x-forms.button type="submit">{{ __('auth.forgot_password_send_email') }}</x-forms.button>
</form>
@else