extends ../layout.pug block head title Change Password block content section.form-wrapper.flex-center.mv-10 form.form-post(action='/forms/changepassword' method='POST') //input(type='hidden' name='_csrf' value=csrf) section.postform-row .postform-label Username input#username(type='text', name='username', maxlength='50') section.postform-row .postform-label Existing Password input#password(type='password', name='password', maxlength='100') section.postform-row .postform-label New Password input#password(type='password', name='newpassword', maxlength='100') section.postform-row .postform-label Confirm New Password input#password(type='password', name='newpasswordconfirm', maxlength='100') section.postform-row .postform-label Captcha span.postform-col img.captcha(src='/captcha' width=200 height=80) input#captcha(type='text', name='captcha', autocomplete='off' placeholder='captcha text' maxlength='6') input(type='submit', value='Change Password')