CS50_Labs/Lab9/finance/templates/sell.html

23 lines
758 B
HTML
Raw Permalink Normal View History

2024-08-09 17:43:54 +00:00
{% extends "layout.html" %}
{% block title %}
Buy
{% endblock %}
{% block main %}
<form action="/sell" method="post">
<div class="mb-3">
<select class="form-select mx-auto w-auto" name="symbol">
<option disabled="" selected="">Symbol</option>
{% for row in portfolio %}
<option value="{{ row.symbol }}">{{ row.symbol }}</option>
{% endfor %}
</select>
</div>
<div class="mb-3">
<input autocomplete="off" class="form-control mx-auto w-auto" min="0" name="shares" placeholder="Shares" type="number">
</div>
<button class="btn btn-primary" type="submit">Sell</button>
</form>
{% endblock %}