I want to make only one checkbox of a group of checkboxes mandatory for the user to check without using JavaScript. I have the following (quite simple) code:
<input type="checkbox" class="checkbox_condition" name="checkboxGroupName" id="first" required>
<input type="checkbox" class="checkbox_condition" name="checkboxGroupName" id="first" required>
I want to compel visitor to select one checkbox from the group. How can I do that without JavaScript? I would appreciate any recommendations.