You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
477 B
Plaintext

extends layout.pug
block content
h1 invoice signer
form(method='post', enctype='multipart/form-data')
label(for="file", class="btn") Select File
input(type='file', name='uploadFile')
input(type='submit', name='uploadFile', value='Upload')
div
h3 Last Files
ul
each file in lastFiles
form(method='get',action='/invoice_sign/download')
input(type='submit', name='downloadFile', value=file.name)