| 1234567891011121314151617 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>上传图片进行识别</title>
- </head>
- <body>
- <h1>上传图片识别</h1>
- <form action="" enctype='multipart/form-data' method='POST'>
- <input type="file" name="file" style="margin-top:20px;"/>
- <br>
- <i>请输入(备用框):</i>
- <input type="text" class="txt_input" name="name" style="margin-top:10px;"/>
- <input type="submit" value="上传" class="button-new" style="margin-top:15px;"/>
- </form>
- </body>
- </html>
|