Advertisement
Guest User

index

a guest
Feb 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. {% extends "layout.html" %}
  2.  
  3. {% block body %}
  4.  
  5. <div class="col">
  6. <form action="/compare" enctype="multipart/form-data" method="post">
  7. <div>
  8. <form>
  9.  
  10. <p></p><input type="file" id="file" name="file1" multiple></p>
  11. <input type="file" id="file" name="file2" multiple><br>
  12. <input type="radio" name="gender" value="lines" checked> lines<br>
  13. <input type="radio" name="gender" value="sentences"> sentences<br>
  14. <input type="radio" name="gender" value="substrings"> algorithm<br>
  15.  
  16. <select name="select" size="1" multiple>
  17. <option> of length n </option>
  18. <option>1</option>
  19. <option>2</option>
  20. <option>3</option>
  21. <option>4</option>
  22. <option>5</option>
  23. <option>6</option>
  24. <option>7</option>
  25. <option>8</option>
  26. <option>9</option>
  27. <option>10</option>
  28. <option>11</option>
  29. <option>12</option>
  30. </select>
  31. </form>
  32.  
  33. </div>
  34. <div>
  35. <button>compare</button>
  36. </div>
  37.  
  38. </form>
  39. </div>
  40.  
  41. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement