christmas/views/profile-password.pug

22 lines
754 B
Text
Raw Normal View History

2021-09-14 23:41:44 -07:00
extends layout.pug
block content
2021-12-03 08:13:43 -08:00
a.button(href=`${_CC.config.base}profile`)= lang('BACK_BUTTON')
2021-09-14 23:41:44 -07:00
form(method='POST')
.field
2021-12-03 08:13:43 -08:00
label.label= lang('PROFILE_PASSWORD_OLD')
2021-09-14 23:41:44 -07:00
.control.has-icons-left
2021-12-03 08:13:43 -08:00
input.input(type='password', name='oldPassword', placeholder=lang('PROFILE_PASSWORD_PLACEHOLDER'))
2021-09-14 23:41:44 -07:00
span.icon.is-small.is-left
i.fas.fa-lock
.field
2021-12-03 08:13:43 -08:00
label.label= lang('PROFILE_PASSWORD_NEW')
2021-09-14 23:41:44 -07:00
.control.has-icons-left
2021-12-03 08:13:43 -08:00
input.input(type='password', name='newPassword', placeholder=lang('PROFILE_PASSWORD_PLACEHOLDER'))
2021-09-14 23:41:44 -07:00
span.icon.is-small.is-left
i.fas.fa-lock
.field
.control
2021-12-03 08:13:43 -08:00
input.button.is-primary(type='submit' value=lang('PROFILE_PASSWORD_BUTTON'))
2021-09-14 23:41:44 -07:00