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
1.3 KiB

section.form-wrapper
5 years ago
form.form-post(action=`/forms/board/${board._id}/post`, enctype='multipart/form-data', method='POST')
input(type='hidden' name='_csrf' value=csrf)
input(type='hidden' name='thread' value=thread != null ? thread.postId : null)
section.postform-section
.postform-label Name
input#name(type='text', name='name', placeholder='Anonymous' autocomplete='off' maxlength='50')
section.postform-section
.postform-label Subject
input#title(type='text', name='subject', autocomplete='off' maxlength='50')
section.postform-section
.postform-label Email
input#name(type='text', name='email', autocomplete='off' maxlength='50')
section.postform-section
.postform-label Password
input#password(type='password', name='password', autocomplete='off' maxlength='50')
section.postform-section
.postform-label Message
textarea#message(name='message', rows='5', autocomplete='off' maxlength='2000')
section.postform-section
.postform-label Files
span
input#file(type='file', name='file' multiple='multiple')
label
input.post-check#spoiler(type='checkbox', name='spoiler', value='true')
| Spoiler
section.postform-section
.postform-label Captcha
input#captcha(type='text', name='captcha', autocomplete='off' placeholder='under construction' maxlength='6')
5 years ago
input(type='submit', value='submit')