Create your account

{{!-- Horrible hack to prevent Chrome from incorrectly auto-filling inputs --}} {{#gh-form-group errors=errors property="email"}} {{gh-input type="email" name="email" placeholder="Eg. john@example.com" class="gh-input" autofocus="autofocus" autocorrect="off" value=email focusOut=(action "validate" "email")}} {{gh-error-message errors=errors property="email"}} {{/gh-form-group}} {{#gh-form-group errors=errors property="name"}} {{gh-input type="text" name="name" placeholder="Eg. John H. Watson" class="gh-input" autofocus="autofocus" autocorrect="off" value=name focusOut=(action "validate" "name")}} {{gh-error-message errors=errors property="name"}} {{/gh-form-group}} {{#gh-form-group errors=errors property="password"}} {{gh-input type="password" name="password" placeholder="At least 8 characters" class="gh-input" autofocus="autofocus" autocorrect="off" value=password focusOut=(action "validate" "password")}}
{{gh-error-message errors=errors property="password"}} {{/gh-form-group}} {{#gh-form-group errors=errors property="blogTitle"}} {{gh-input type="text" name="blog-title" placeholder="Eg. The Daily Awesome" class="gh-input" autofocus="autofocus" autocorrect="off" value=blogTitle focusOut=(action "validate" "blogTitle")}} {{gh-error-message errors=errors property="blogTitle"}} {{/gh-form-group}}
{{#if showError}}

{{invalidMessage}}

{{/if}}