123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>UPLOAD</title>
- </head>
- <body>
- <div class="inline" style="margin-left: 25%;float: left">
- <h3>试卷文字提取</h3>
- <form action="/segment/formula/" method="post" enctype="multipart/form-data">
- <p>上传一道试题,返回该题相关信息</p>
- {% csrf_token %}
- {{ formula_form.as_p }}
- <input type="submit" value="上传"/><br>
- </form>
- </div>
- <div class="inline" style="margin-right: 25%;float: right;">
- <h3>数学公式提取并显示</h3>
- <form action="/segment/formula_show/" method="post" enctype="multipart/form-data">
- <p>上传一道试题,返回该题相关信息</p>
- {% csrf_token %}
- {{ img_form.as_p }}
- <input type="submit" value="上传"/><br>
- </form>
- </div>
- <div class="inline" style="margin-left: 25%;float: left;">
- <h3>数学公式提取并显示</h3>
- <form action="/segment/ai_formula_show/" method="post" enctype="multipart/form-data">
- <p>上传一道试题,返回该题相关信息</p>
- {% csrf_token %}
- {{ img_form.as_p }}
- <input type="submit" value="上传"/><br>
- </form>
- </div>
- </body>
- </html>
|