 <p class="login-box-msg">Register a new membership</p>
  <form {{action 'createUser' model on='submit'}}>
    <div class="form-group has-feedback">
      {{input type="text" class="form-control" placeholder="Enter your Username" value=username}}
      <span class="glyphicon glyphicon-user form-control-feedback"></span>
    </div>
  {{#if usernameInUse}}
    <p id="login-account-email-errors" class="errors text-danger">
      This username is use, please try another one
      <br /> or did you want to
      {{#link-to 'access.login'}}log in{{/link-to}}?
    </p>
  {{/if}}
    <div class="form-group has-feedback">
      {{input type="email" class="form-control" placeholder="Enter your email" value=identification}}
      <span class="glyphicon glyphicon-envelope form-control-feedback"></span>
    </div>
  {{#if emailInUse}}
    <p id="login-account-email-errors" class="errors text-danger">
      This email address is use, please try another one
      <br /> or did you want to
      {{#link-to 'access.login'}}log in{{/link-to}}?
    </p>
  {{/if}}
    <div class="row">
      <div class="col-xs-8">
        <div class="checkbox icheck">
          <label>
            <input type="checkbox"> I agree to the <a href="#">terms</a>
          </label>
        </div>
      </div><!-- /.col -->
      <div class="col-xs-4">
        <button type="submit" class="btn btn-primary btn-block btn-flat">Register</button>
      </div><!-- /.col -->
    </div>
  </form>
  {{#link-to 'access.login' class='text-center'}}I already have a membership{{/link-to}}