github.com/qiuhoude/go-web@v0.0.0-20220223060959-ab545e78f20d/gindemo/static/file.html (about)

     1  <!DOCTYPE html>
     2  <html lang="en">
     3  <head>
     4      <meta charset="UTF-8">
     5      <title>文件</title>
     6  </head>
     7  <body>
     8  <form action="/upload" method="post" enctype="multipart/form-data">
     9      头像:
    10      <input type="file" name="file">
    11      <br>
    12      <input type="submit" value="提交">
    13  </form>
    14  
    15  </body>
    16  </html>