bank_index.html 517 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>upload index</title>
  6. </head>
  7. <body>
  8. <h2>API 银行卡:</h2>
  9. <form action="/bank/" method="POST" enctype="multipart/form-data">
  10. <input type="file" name="picture">
  11. <input type="submit" value="上传并识别">
  12. </form>
  13. <h2>在线 银行卡:</h2>
  14. <form action="/bank/html/" method="POST" enctype="multipart/form-data">
  15. <input type="file" name="picture">
  16. <input type="submit" value="上传并识别">
  17. </form>
  18. </body>
  19. </html>