idc_index.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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="/idc/" method="POST" enctype="multipart/form-data">
  10. <input type="file" name="picture">
  11. <input type="text" name="which" value="face" hidden>
  12. <input type="submit" value="上传并识别">
  13. </form>
  14. <h2>API 国徽面:</h2>
  15. <form action="/idc/" method="POST" enctype="multipart/form-data">
  16. <input type="file" name="picture">
  17. <input type="text" name="which" value="icon" hidden>
  18. <input type="submit" value="上传并识别">
  19. </form>
  20. <h2>在线 人像面:</h2>
  21. <form action="/idc/html/" method="POST" enctype="multipart/form-data">
  22. <input type="file" name="picture">
  23. <input type="text" name="which" value="face" hidden>
  24. <input type="submit" value="上传并识别">
  25. </form>
  26. <h2>在线 国徽面:</h2>
  27. <form action="/idc/html/" method="POST" enctype="multipart/form-data">
  28. <input type="file" name="picture">
  29. <input type="text" name="which" value="icon" hidden>
  30. <input type="submit" value="上传并识别">
  31. </form>
  32. </body>
  33. </html>