mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
34 lines
No EOL
849 B
Text
34 lines
No EOL
849 B
Text
extends ../layout
|
|
|
|
block content
|
|
.content.content-alt
|
|
.container
|
|
.row
|
|
.col-md-6.col-md-offset-3.col-lg-4.col-lg-offset-4
|
|
.card
|
|
.page-header
|
|
h1 Reset your password
|
|
form(
|
|
async-form="password-reset",
|
|
action="/user/password/set",
|
|
ng-cloak
|
|
)
|
|
input(type="hidden", name="_csrf", value=csrfToken)
|
|
form-messages
|
|
.alert.alert-success(ng-show="success")
|
|
| Your password has been reset.
|
|
a(href='/login') Login here
|
|
|
|
.form-group
|
|
input.form-control(
|
|
type='password',
|
|
name='password',
|
|
placeholder='new password'
|
|
)
|
|
input(
|
|
type="hidden",
|
|
name="passwordResetToken",
|
|
value=passwordResetToken
|
|
)
|
|
.actions
|
|
button.btn.btn-primary(type='submit') Set new password |