ahmedraza

quote.html

Feb 19th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.53 KB | None | 0 0
  1. {% extends "layout.html" %}
  2.  
  3. {% block title %}
  4. Please enter the Symbol for the qoute.
  5. {% endblock %}
  6.  
  7. {% block main %}
  8. <form action="{{ url_for('quote') }}" method="post", "get">
  9.     <fieldset>
  10.         <div class="form-group">
  11.             <input autocomplete="off" autofocus class="form-control" name="symbol" placeholder="symbol" type="text"/>
  12.         </div>
  13.         <div class="form-group">
  14.             <button class="btn btn-default" type="submit">Submit</button>
  15.         </div>
  16.     </fieldset>
  17.     </form>
  18.     {% endblock %}
Add Comment
Please, Sign In to add comment