Skip to content

Instantly share code, notes, and snippets.

@nshCore
Last active October 4, 2016 18:57
Show Gist options
  • Save nshCore/0c73957a23497d32debc5ea9a2adc5ec to your computer and use it in GitHub Desktop.
Save nshCore/0c73957a23497d32debc5ea9a2adc5ec to your computer and use it in GitHub Desktop.

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="your@email.com" 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>       
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment