mirror of https://github.com/me50/kukemuna.git
24 lines
551 B
HTML
24 lines
551 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block title %}
|
|
Quote
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
{% if stock %}
|
|
<p>A share of {{ stock.symbol }} costs {{ stock.price }}</p>
|
|
|
|
{% else%}
|
|
<form action="/quote" method="POST">
|
|
<div class="mb-3">
|
|
<input class="form-control mx-auto w-auto" autocomplete="off" autofocus="" name="symbol" placeholder="Symbol" type="text">
|
|
</div>
|
|
<button class="btn btn-primary" type="submit">Quote</button>
|
|
</form>
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endblock %}
|