Skip to content

Instantly share code, notes, and snippets.

@nshCore
Last active October 4, 2016 19:47
Show Gist options
  • Save nshCore/948734facfb55b82d0e95f50a5dcaea8 to your computer and use it in GitHub Desktop.
Save nshCore/948734facfb55b82d0e95f50a5dcaea8 to your computer and use it in GitHub Desktop.

Location FieldSet

<fieldset id="LocationDetails">
  <legend>Business Location Details</legend>
  <input type="text" id="LongitudeInput" hidden>
  <input type="text" id="LatitudeInput" hidden>
 </fieldset>

Post Address FieldSet

<fieldset id="PostalAddress">
 <legend>Postal Address</legend>
 <label for="AddressLine1Input">Address Line1<span class="required=">*</span></label>
 <input class="u-full-width" type="text" placeholder="Line 1" id="AddressLine1Input">
 <label for="AddressLine2Input">Address Line2<span class="required=">*</span></label>
 <input class="u-full-width" type="text" placeholder="Line 2" id="AddressLine2Input">
 <label for="AddressCityInput">Address City<span class="required=">*</span></label>
 <input class="u-full-width" type="text" placeholder="City" id="AddressCityInput">
 <label for="AddressZipInput">Address Zip<span class="required=">*</span></label>
 <input class="u-full-width" type="text" placeholder="Zip Code" id="AddressZipInput">
 <label for="AddressZipCountry">Address Country<span class="required=">*</span></label>
 <select class="u-full-width" id="AddressZipCountry">
   <option class="selectOption" value="uk">UK</option>
 </select>
</fieldset>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment