Advertisement
Guest User

Untitled

a guest
Jun 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 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" class="form-control" name="symbol" placeholder="Symbol" type="text"/>
  12. </div>
  13. <div class="form-group">
  14. <input autocomplete="off" class="form-control" name="share" placeholder="Shares" type="text"/>
  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