Advertisement
DragonOsman

buy.html template, Pset7 Finance

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