aboutsummaryrefslogtreecommitdiff
path: root/templates/Homepage.jinja2
blob: 191d591d801bfd0acb95086a1e0729c8c525a1ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "base.html" %}
{% block content %}
<h1>SimilarBeer</h1>
<form action="/similar" method="post">
  <div>
    <label for="q"><strong>Tell us a beer you like:</strong></label><br>
    <input type="text" id="q" list="beers" autofocus>
  </div>
  <input type="submit" value="Show me others!">
</form>
<p><a href="/random">Random Beer</a></p>
{% endblock %}