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.

26 lines
902 B

extends ../layout.pug
block head
title Register
block content
section.form-wrapper
form.form-post(action='/forms/register' 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 Password
input#password(type='password', name='password', maxlength='100')
section.postform-row
5 years ago
.postform-label Confirm Password
input#password(type='password', name='passwordconfirm', 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='submit')
5 years ago
p Already have an account? #[a(href='/login') Login]