Advertisement
venom049

Similarities / index.html

Mar 10th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.79 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.  
  8.             <input type="file" placeholder="Browse.." name="file1"> <br>
  9.             <input type="file" placeholder="Browse.." name="file2"> <br><br>
  10.  
  11.  
  12.             <input type="radio" name="algorithm" value="lines"> <label>Compare lines</label> <br>
  13.             <input type="radio" name="algorithm" value="sentences"> <label>Compare sentences</label> <br><br>
  14.             <input type="radio" name="algorithm" value="substrings"> <label>Compare substrings </label> <br>
  15.  
  16.             <input type="number" name="length" placeholder="of length n"><br><br>
  17.  
  18.             <input type="submit" value="Compare">
  19.         </form>
  20.     </div>
  21.  
  22. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement