dreaming_with_trees/templates/step1.html

13 lines
385 B
HTML

<h1>Dreaming with trees</h1>
<p>These are locations where you can catch dreams near trees.</p>
<p>Please choose one:</p>
<form method="POST" action="/step2">
<ul>
{% for location in locations %}
<li><input type="radio" name="location" value="{{ loop.index0 }}">{{ location }}</li>
{% endfor %}
</ul>
<input type ="submit" value ="Choose"/>
</form>