From 9e25d8c5e461ff8e59cf074486b75c47492660da Mon Sep 17 00:00:00 2001 From: Rogier Neeleman Date: Wed, 22 Jul 2020 22:08:27 +0200 Subject: [PATCH] Upload picture has a better design. --- app/templates/catch_bunny.html | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) 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 %}