Use form-check-input class (#2374)

This commit is contained in:
Clément OUDOT 2020-11-04 23:28:13 +01:00
parent 18c1a753ad
commit e00f1f9e5f
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@
<div class="input-group mb-3">
<div class="input-group-prepend">
<div class="input-group-text">
<input id="resendconfirmation" type="checkbox" name="resendconfirmation" ariadescribedby="resendconfirmationlabel">
<input class="form-check-input" id="resendconfirmation" type="checkbox" name="resendconfirmation" ariadescribedby="resendconfirmationlabel">
</div>
</div>
<p class="form-control">

View File

@ -12,7 +12,7 @@
<TMPL_LOOP NAME="check">
<p class="notifCheck">
<div class="form-group form-check">
<input type="checkbox" name="check<TMPL_VAR NAME="id">" id="<TMPL_VAR NAME="id">" value="accepted"/>
<input class="form-check-input" type="checkbox" name="check<TMPL_VAR NAME="id">" id="<TMPL_VAR NAME="id">" value="accepted"/>
<label class="form-check-label" for="<TMPL_VAR NAME="id">"><TMPL_VAR NAME="value"></label>
</div>
</p>