diff --git a/app/templates/catch_bunny.html b/app/templates/catch_bunny.html index e6487c1..5a32a4a 100644 --- a/app/templates/catch_bunny.html +++ b/app/templates/catch_bunny.html @@ -2,11 +2,18 @@ {% import 'bootstrap/wtf.html' as wtf %} {% block player_app_content %} -

Catch Bunny

-
- {{ wtf.quick_form(form, button_map={'submit': 'primary'}) }} -
+
+
+

Catch Bunny

+
+ {{ form.hidden_tag() }} + {{ wtf.form_field(form.bunny) }} + {{ wtf.form_field(form.photo) }} + {{ wtf.form_field(form.submit, class='btn btn-primary') }} + +
+
+
-back -{% endblock %} \ No newline at end of file +{% endblock %}