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.

31 lines
1023 B

extends ../layout.pug
block head
title Register
block content
section.form-wrapper.flex-center.mv-10
form.form-post(action='/forms/register' method='POST')
//input(type='hidden' name='_csrf' value=csrf)
section.row
.label Username
.required *
input#username(type='text', name='username', maxlength='50' required)
section.row
.label Password
.required *
input#password(type='password', name='password', maxlength='100' required)
section.row
.label Confirm Password
.required *
input#password(type='password', name='passwordconfirm', maxlength='100' required)
section.row
.label Captcha
.required *
span.col
iframe.captcha(src='/captcha.html' width=200 height=110 scrolling='no')
input#captcha(type='text', name='captcha', autocomplete='off' placeholder='captcha text' pattern=".{6}" required title='6 characters')
input(type='submit', value='Register')
p: a(href='/login.html') Login
p: a(href='/changepassword.html') Change Password