mirror of https://github.com/me50/kukemuna.git
23 lines
760 B
HTML
23 lines
760 B
HTML
|
|
{% extends "layout.html" %}
|
||
|
|
|
||
|
|
{% block title %}
|
||
|
|
Sell
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% block main %}
|
||
|
|
<form action="/sell" method="POST">
|
||
|
|
<div class="mb-3">
|
||
|
|
<select class="form-select mx-auto w-auto" name="symbol">
|
||
|
|
<option disables="" selected="">Symbol</option>
|
||
|
|
{% for stock in stocks %}
|
||
|
|
<option value="{{ stock.symbol }}">{{ stock.symbol }}</option>
|
||
|
|
{% endfor %}
|
||
|
|
</select>
|
||
|
|
</div>
|
||
|
|
<div class="mb-3">
|
||
|
|
<input class="form-control mx-auto w-auto" autocomplete="off" autofocus min="1" name="shares" placeholder="Shares" type="number">
|
||
|
|
</div>
|
||
|
|
<button class="btn btn-primary" type="submit">Sell</button>
|
||
|
|
</form>
|
||
|
|
{% endblock %}
|