Feature: Contact Important Billing and Technical were addded Started migrating checkboxes and radio buttons to custom css to match the selected theme

This commit is contained in:
johnnyq
2023-01-25 16:43:34 -05:00
parent 9a15f0e0b3
commit 16d3d4420a
14 changed files with 148 additions and 58 deletions

View File

@@ -91,9 +91,13 @@
<input type="file" class="form-control-file" accept="image/*;capture=camera" name="file">
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" name="send_email" value="" checked/>
<label class="form-check-label">Send user e-mail with login details?</label>
<div class="form-group">
<div class="custom-control custom-checkbox">
<input class="custom-control-input" type="checkbox" id="sendEmailCheckBox" name="send_email" value="" checked>
<label for="sendEmailCheckBox" class="custom-control-label">
Send user e-mail with login details?
</label>
</div>
</div>
</div>