shopylist/templates/index.html
2018-08-11 23:38:06 +10:00

24 lines
637 B
HTML

<html>
<body style="background: #123456">
<h1>Shopping list </h1>
{% for res in data %}
{% for field in res %}
{{ field }}
{% endfor %}
<br/>
{% endfor %}
<form action="/" method="post">
<label>Who Dat?</label>
<input type="text" name='requester'/><br/>
<label>Watchu Want?</label>
<input type="text" name='item'/><br/>
<label>How Many?</label>
<input type="text" name='quantity'/><br/>
<label>Have we gotten it?</label>
<input type="text" name='gotten'/><br/>
<input type="submit"/>
</form>
</body>
</html>