jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
788 B

5 years ago
extends ../layout.pug
block head
title Change Password
5 years ago
block content
section.form-wrapper.flex-center.mv-10
5 years ago
form.form-post(action='/forms/changepassword' method='POST')
input(type='hidden' name='_csrf' value=csrf)
section.postform-row
5 years ago
.postform-label Username
input#username(type='text', name='username', maxlength='50')
section.postform-row
5 years ago
.postform-label Existing Password
input#password(type='password', name='password', maxlength='100')
section.postform-row
5 years ago
.postform-label New Password
input#password(type='password', name='newpassword', maxlength='100')
section.postform-row
5 years ago
.postform-label Confirm New Password
input#password(type='password', name='newpasswordconfirm', maxlength='100')
input(type='submit', value='submit')