Advertisement
DragonOsman

quote.html Pset7

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