123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <form action="/submitform" method="post" enctype="multipart/form-data">
- <p><input type="file" name="file" accept=".zip,.rar"></p>
- <p><input type="text" name='username'>收信者郵箱</p>
- <input type="submit">
- </form>
-
- </form>
-
- </body>
- </html>
|