freeCodeCamp/views/account/reset.jade

18 lines
672 B
Plaintext
Raw Normal View History

2014-02-17 18:00:43 +00:00
extends ../layout
block content
.col-sm-8.col-sm-offset-2.jumbotron
form(action='/reset/#{token}', method='POST')
h1 Reset Password
2014-03-28 17:40:55 +00:00
input(type='hidden', name='_csrf', value=_csrf)
.form-group
label(for='password') New Password
input.form-control(type='password', name='password', value='', placeholder='New password', autofocus=true)
.form-group
label(for='confirm') Confirm Password
input.form-control(type='password', name='confirm', value='', placeholder='Confirm password')
.form-group
2014-02-18 08:10:24 +00:00
button.btn.btn-primary.btn-reset(type='submit')
i.fa.fa-keyboard-o
2014-03-06 07:48:59 +00:00
| Change Password