bin/views/main.pug

20 lines
888 B
Plaintext

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
if (!exceeded)
input(type='submit' value='Upload!')
if (exceeded)
p(style='color:darkred;font-weight:bold;font-size:9pt' align='center')
| Max uploads limit exceeded. No more uploads would be accepted.
br
| Contact site administrator so they would increase the limit or delete some uploads.
if (process.env.ADMIN_EMAIL)
- let email = process.env.ADMIN_EMAIL;
br
br
| Admin email is:
a(href='mailto:' + email)= email