17 lines
560 B
HTML
17 lines
560 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block title %}
|
|
Buy
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<form action="/buy" method="post">
|
|
<div class = "form-group">
|
|
<input autocomplete="off" autofocus class="form-control" name="symbol" placeholder="Stock Symbol" type="text">
|
|
</div>
|
|
<div class = "form-group">
|
|
<input autocomplete="off" autofocus class="form-control" name="shares" placeholder="Shares" type="text">
|
|
</div>
|
|
<button class="btn btn-primary" type="submit">Buy</button>
|
|
</form>
|
|
{% endblock %} |