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.
 
 
 
 
 

25 lines
893 B

extends ../layout.pug
block head
title #{__('Register')}
block content
h1.board-title #{__('Register')}
.form-wrapper.flex-center.mv-10
form.form-post(action='/forms/register' method='POST' data-captcha-preload='true')
.row
.label #{__('Username')}
input(type='text', name='username', maxlength='50' pattern='[a-zA-Z0-9]+' required title=__('alphanumeric only'))
.row
.label #{__('Password')}
input(type='password', name='password', maxlength='100' required)
.row
.label #{__('Confirm Password')}
input(type='password', name='passwordconfirm', maxlength='100' required)
if captchaOptions.type === 'text'
include ../includes/captchasidelabel.pug
else
include ../includes/captchafieldrow.pug
input(type='submit', value=__('Register'))
p: a(href='/login.html') #{__('Login')}
p: a(href='/changepassword.html') #{__('Change Password')}