User registration snippet
<div class="row">
<div class="12 columns">
<label for="EmailInput">Email<span class="required=">*</span></label>
<input class="u-full-width" type="email" placeholder="[email protected]" id="EmailInput">
<label for="FirstNameInput">First Name<span class="required=">*</span></label>
<input type="text" class="u-full-width" placeholder="First Name" id="FirstNameInput">
<label for="LastNameInput">Last Name<span class="required=">*</span></label>
<input type="text" class="u-full-width" placeholder="Last Name" id="LastNameInput">
<label for="PasswordInput">Password<span class="required=">*</span></label>
<input type="text" class="u-full-width" placeholder="" id="PasswordInput">
<label for="PasswordConfirmationInput">Password Confirmation<span class="required=">*</span></label>
<input type="text" class="u-full-width" placeholder="" id="PasswordConfirmationInput">
</div>
</div>