Fix checkboxes

This commit is contained in:
Yassine Guedidi
2025-02-19 03:55:22 +01:00
parent 8df7d21777
commit 2e4317f6ef
15 changed files with 110 additions and 68 deletions

View File

@ -21,9 +21,11 @@
</div>
{% if displayTrustedOption %}
<div class="input-field col s12">
<input id="_trusted" type="checkbox" name="{{ trustedParameterName }}" />
<label for="_trusted">{{ "trusted"|trans({}, 'SchebTwoFactorBundle') }}</label>
<div class="input-field col s12 with-checkbox">
<label for="_trusted">
<input id="_trusted" type="checkbox" name="{{ trustedParameterName }}"/>
<span>{{ "trusted"|trans({}, 'SchebTwoFactorBundle') }}</span>
</label>
</div>
{% endif %}
</div>