bin/views/main.pug

15 lines
650 B
Plaintext
Raw Normal View History

2023-03-04 02:09:05 +01:00
extends template/main.pug
block content
form(action='/upload' method='POST')
p(align='center')
textarea(name='text' class='data' placeholder='Put your text in here!' + (maxlen ? ` (Max length is ${maxlen} bytes)` : ''))
br
2023-03-04 06:00:53 +01:00
if (!exceeded)
input(type='submit' value='Upload!')
if (exceeded)
p(style='color:darkred;font-weight:bold;font-size:9pt')
| Max uploads limit exceeded. No more uploads would be accepted.
br
2023-03-04 06:47:29 +01:00
| Contact site administrator so they would increase the limit or delete some upload.
p= exceeded