Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
lynnfaraday committed Nov 9, 2023
2 parents 5d0339b + 2c6721b commit fc3d541
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions app/templates/register.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,13 @@

<div class="card card-default">
<div class="card-body">


<p><Input @type="text" id="name" placeholder="Name" @enter={{action "register"}} @value={{name}} autofocus={{true}} /></p>
<p><Input @type="password" placeholder="Password" @enter={{action "register"}} id="password" @value={{password}} /></p>
<p><Input @type="password" placeholder="Confirm Password" @enter={{action "register"}} id="confirmPassword" @value={{confirmPassword}} /></p>
<p><Input @type="text" id="name" placeholder="Name" @enter={{action "register"}} @value={{this.name}} autofocus={{true}} /></p>
<p><Input @type="password" placeholder="Password" @enter={{action "register"}} id="password" @value={{this.password}} /></p>
<p><Input @type="password" placeholder="Confirm Password" @enter={{action "register"}} id="confirmPassword" @value={{this.confirmPassword}} /></p>

{{#if this.model.recaptcha}}
<GRecaptcha @onSuccess={{action "recaptchaResolved"}} @ref={{mut recaptchaControl}} @sitekey={{this.model.recaptcha}} />
<GRecaptcha @onSuccess={{action "recaptchaResolved"}} @ref={{mut this.recaptchaControl}} @sitekey={{this.model.recaptcha}} />
{{/if}}

<button {{action "register"}} class="btn btn-primary">Register</button>
Expand Down

0 comments on commit fc3d541

Please sign in to comment.