upload.html 361 B

1234567891011121314
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Insert title here</title>
  6. </head>
  7. <body>
  8. <form action="{:url('upload/upfile')}" method="post" enctype="multipart/form-data">
  9. <input type='file' name='image'/>
  10. <input type='hidden' name='type' value='image'/>
  11. <input type='submit' value='提交'/>
  12. </form>
  13. </body>
  14. </html>