123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="UTF-8">
- <title>upload index</title>
- </head>
- <body>
- <h2>API 人像面:</h2>
- <form action="/idc/" method="POST" enctype="multipart/form-data">
- <input type="file" name="picture">
- <input type="text" name="which" value="face" hidden>
- <input type="submit" value="上传并识别">
- </form>
- <h2>API 国徽面:</h2>
- <form action="/idc/" method="POST" enctype="multipart/form-data">
- <input type="file" name="picture">
- <input type="text" name="which" value="icon" hidden>
- <input type="submit" value="上传并识别">
- </form>
- <h2>在线 人像面:</h2>
- <form action="/idc/html/" method="POST" enctype="multipart/form-data">
- <input type="file" name="picture">
- <input type="text" name="which" value="face" hidden>
- <input type="submit" value="上传并识别">
- </form>
- <h2>在线 国徽面:</h2>
- <form action="/idc/html/" method="POST" enctype="multipart/form-data">
- <input type="file" name="picture">
- <input type="text" name="which" value="icon" hidden>
- <input type="submit" value="上传并识别">
- </form>
- </body>
- </html>
|