20 lines
687 B
Plaintext
20 lines
687 B
Plaintext
extends layout
|
|
block main
|
|
p
|
|
a(href='/') 返回首页
|
|
if file
|
|
section
|
|
p
|
|
| 文件
|
|
var #{file.filename}
|
|
| 分享成功!
|
|
p 链接
|
|
- const url = 'download/' + file.id
|
|
a(href=url)= url
|
|
form(method='POST' action='upload' enctype='multipart/form-data')
|
|
label(for='file_input') 文件
|
|
input(id='file_input' name='file' type='file' required)
|
|
label(for='password_input') 密码
|
|
input(id='password_input' name='password' type='password' autocomplete='off')
|
|
button(id='share_button' type='submit') 分享
|