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.
 
 
 
 
 

16 lines
517 B

p make a post:
form.form-post(action='/api/board/'+board._id, enctype='multipart/form-data', method='POST')
input(type='hidden' name='_csrf' value=csrf)
input(type='hidden' name='thread' value=thread != null ? thread._id : null)
input#title(type='text', name='subject', placeholder='subject')
input#name(type='text', name='author', placeholder='name')
textarea#content(name='content', rows='8', cols='50', placeholder='message')
input#file(type='file', name='file')
input(type='submit', value='submit')