1234567891011121314151617181920212223 |
- <!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>
- <h2>银行卡信息管理</h2>
- <a href="/bank/manage/">
- <button>前往管理</button>
- </a>
- </body>
- </html>
|