2024-04-25 23:23:51 +03:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
|
Buy
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
|
<form action="/buy" method="POST">
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<input class="form-control mx-auto w-auto" autocomplete="off" autofocus="" name="symbol" placeholder="Symbol" type="text">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3">
|
2024-04-26 08:38:56 +03:00
|
|
|
<input class="form-control mx-auto w-auto" autocomplete="off" autofocus min="1" name="shares" placeholder="Shares" type="text">
|
2024-04-25 23:23:51 +03:00
|
|
|
</div>
|
|
|
|
|
<button class="btn btn-primary" type="submit">Buy</button>
|
|
|
|
|
</form>
|
|
|
|
|
{% endblock %}
|