Enhancement: set autofocus on MFA code field (#8756)

This commit is contained in:
Max Mehl 2025-01-15 22:32:55 +01:00 committed by GitHub
parent 405fab8514
commit d36e8254f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,7 @@
{% block form_content %}
{% translate "Code" as i18n_code %}
<div class="form-floating">
<input type="code" name="code" id="inputCode" autocomplete="one-time-code" placeholder="{{ i18n_code }}" class="form-control" required>
<input type="code" name="code" id="inputCode" autocomplete="one-time-code" placeholder="{{ i18n_code }}" class="form-control" required autofocus>
<label for="inputCode">{{ i18n_code }}</label>
</div>
<div class="d-grid mt-3">