diff options
Diffstat (limited to 'views/reset_password.hbs')
| -rw-r--r-- | views/reset_password.hbs | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/views/reset_password.hbs b/views/reset_password.hbs new file mode 100644 index 0000000..754c65d --- /dev/null +++ b/views/reset_password.hbs @@ -0,0 +1,51 @@ +<main id="solutions-main"> + <div class="row"> + <div class="slate signin-page col-sm-4 col-sm-offset-4 col-md-4 col-md-offset-4"> + <div class="container"> + {{# if success }} + <section class="alert alert-success"> + <!-- Change those to banners later --> + <h2>Signup Successful!</h2> + </section> + {{ else }} + {{# if errors }} + <section class="alert alert-danger"> + <ul> + {{# each errors }} + <li>{{ this.msg }}</li> + {{/each}} + </ul> + </section> + {{/if}} + {{/if}} + {{#if flashMsg}} + <section class="alert alert-danger"> + {{flashMsg}} + </section> + {{/if}} + + <h3 class="signin"><hr><i class="fa fa-unlock-alt" aria-hidden="true"></i> Reset Password<hr></h3> + <form action="/user/" method="post"> + <div class="form-group reset-group"> + <div class="input-group input-group-lg"> + <div class="input-group-addon addon-email-reset"> + <i class="fa fa-at" aria-hidden="true"></i> + </div> + <input type="text" class="form-control input-email-reset" placeholder="email" name="email-reset" required> + </div> + </div> + <input type="hidden" name="_csrf" value="{{ csrfToken }}"> + <button class="signin-btn signin-insite btn-lg btn btn-primary btn-block"><span>Submit</span></button> + + <div class="reset-bottom"> + <a href="/user/signin">Return to Sign in</a> + </div> + </form> + + + </div> + + </div> + </div> + +</main>
\ No newline at end of file |
