Create your account

{{!-- Hack to stop Chrome's broken auto-fills --}} {{#gh-form-group errors=model.errors property="email"}} {{gh-input type="email" name="email" placeholder="Eg. john@example.com" class="gh-input" autofocus="autofocus" autocorrect="off" value=model.email focusOut=(action "validate" "email")}} {{gh-error-message errors=model.errors property="email"}} {{/gh-form-group}} {{#gh-form-group errors=model.errors property="name"}} {{gh-input type="text" name="name" placeholder="Eg. John H. Watson" class="gh-input" autofocus="autofocus" autocorrect="off" value=model.name focusOut=(action "validate" "name")}} {{gh-error-message errors=model.errors property="name"}} {{/gh-form-group}} {{#gh-form-group errors=model.errors property="password"}} {{input class="gh-input" type="password" name="password" autofocus="autofocus" autocorrect="off" value=model.password focusOut=(action "validate" "password")}}
{{gh-error-message errors=model.errors property="password"}} {{/gh-form-group}}