index.html 612 B

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