12345678910111213141516171819 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="UTF-8">
- <title>upload index</title>
- </head>
- <body>
- <h2>API 银行卡:</h2>
- <form action="/bank/" method="POST" enctype="multipart/form-data">
- <input type="file" name="picture">
- <input type="submit" value="上传并识别">
- </form>
- <h2>在线 银行卡:</h2>
- <form action="/bank/html/" method="POST" enctype="multipart/form-data">
- <input type="file" name="picture">
- <input type="submit" value="上传并识别">
- </form>
- </body>
- </html>
|