sheet_with_id.html 833 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>AI_BRAIN</title>
  6. <style type="text/css">
  7. <!--
  8. h3 {
  9. margin-left:10px;
  10. text-align: center;
  11. }
  12. form {
  13. margin-left:10px;
  14. }
  15. .brain{
  16. text-align: center; /*让div内部文字居中*/
  17. }
  18. .inline{
  19. border:1px solid #000;
  20. border-radius: 10px;
  21. width: 360px;
  22. height: 300px;
  23. }
  24. -->
  25. </style>
  26. </head>
  27. <body>
  28. <div class="brain">
  29. <h2>&#8595 &#8595 AI-BRAIN &#8595 &#8595</h2><br>
  30. </div>
  31. <div class="inline" style="margin-left: 25%;float: left">
  32. <h3>答题卡分割</h3>
  33. <form action="/segment/sheet/" method="post" enctype="multipart/form-data">
  34. <p>上传模板与Paper_id</p>
  35. {% csrf_token %}
  36. {{ form.as_p }}
  37. <input type="submit" value="上传"/><br>
  38. </form>
  39. </div>
  40. </body>
  41. </html>