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.
 
 
 
 
 

17 lines
667 B

form.form-post(action=`/forms/appeal`, enctype='application/x-www-form-urlencoded', method='POST' data-captcha-preload='true')
include ./bantable.pug
for ban in bans
+ban(ban, true)
- const allowAppeal = bans.filter(ban => ban.allowAppeal === true && !ban.appeal).length > 0;
if allowAppeal === true
h4.no-m-p #{__('Appeal')}:
.form-wrapper.flexleft.mt-10
input(type='hidden' name='_csrf' value=csrf)
.row
.label #{__('Message')}
textarea(rows='5' name='message' required)
if captchaOptions.type === 'text'
include ./captchasidelabel.pug
else
include ./captchafieldrow.pug
input(type='submit', value=__('Submit'))