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 include ../includes/captcha.pug input(type='submit', value='submit')