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.
 
 
 
 
 

33 lines
998 B

extends ../layout.pug
include ../mixins/ban.pug
block head
title Banned!
block content
h1.board-title Banned!
form.form-post(action=`/forms/appeal`, enctype='application/x-www-form-urlencoded', method='POST')
.table-container.flex-center.mv-10
table
tr
th Bans currently in place against your IP:
if bans.length > 0
for ban in bans
tr
td
+ban(ban, true)
if allowAppeal === true
tr
td
h4.no-m-p Appeal bans:
section.form-wrapper.flexleft.mt-10
input(type='hidden' name='_csrf' value=csrf)
section.row
.label Message
textarea(name='message' required)
section.row
.label Captcha
span.col
iframe.captcha(src='/captcha.html' width=200 height=110 scrolling='no')
input(type='text', name='captcha', autocomplete='off' placeholder='captcha text' pattern=".{6}" required title='6 characters')
input(type='submit', value='submit')