Skip to content

Instantly share code, notes, and snippets.

@townivan
Last active June 21, 2024 12:41
Show Gist options
  • Save townivan/89afb60beb5f4bf0db2f1d257b271581 to your computer and use it in GitHub Desktop.
Save townivan/89afb60beb5f4bf0db2f1d257b271581 to your computer and use it in GitHub Desktop.
fmo-checkbox-group
<fieldset class="fmo-reset-radio-and-checkbox-group">
<legend class="fmo-reset-control-label">
Choose one or more available days
</legend>
<div class="fmo-reset-block-group">
<div class="fmo-reset-input-label-container">
<input type="checkbox" id="cbgroup-1" name="cbgroup1" value="Monday" required />
<label for="cbgroup-1" class="shim-down-1">Monday</label>
</div>
<div class="fmo-reset-input-label-container">
<input type="checkbox" id="cbgroup-2" name="cbgroup1" value="Wednesday" required />
<label for="cbgroup-2" class="shim-down-1">Wednesday</label>
</div>
<div class="fmo-reset-input-label-container">
<input type="checkbox" id="cbgroup-3" name="cbgroup1" value="Friday" required />
<label for="cbgroup-3" class="shim-down-1">Friday</label>
</div>
</div>
<p class="fmo-reset-validation-message" role="alert">
<span aria-hidden="true">&otimes;</span>
Please choose at least one available day.
</p>
</fieldset>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment