Advertisement
IrinaPenzina

PSET7 buy html

Oct 19th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. {% extends "layout.html" %}
  2.  
  3. {% block title %}
  4.     Buy
  5. {% endblock %}
  6.  
  7. {% block main %}
  8.     <form action="/buy" method="post">
  9.         <div class="form-group">
  10.             <input class="form-control" name="symbol" placeholder="Symbol" type="symbol"/>
  11.         </div>
  12.         <div class="form-group">
  13.             <input class="form-control" name="shares" placeholder="Shares" type="shares"/>
  14.         </div>
  15.         <button class="btn btn-primary" type="buy">Buy</button>
  16.     </form>
  17. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement