Redigate thanks page

This commit is contained in:
Sauer 2019-04-14 16:17:30 +02:00
parent e0c1f291e0
commit d329e7790c
7 changed files with 12 additions and 1 deletions

View File

@ -107,7 +107,7 @@ def solution():
writer = csv.writer(f)
writer.writerow(solution_list)
return redirect(url_for('thanks'))
return render_template('solution.html', form=form, title='Sortierhut', text='Hallo, Lösung')
return render_template('solution.html', form=form, title='Sortierhut')
# @app.route('/form')

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,4 +1,15 @@
{% extends "base.html" %}
{% block content %}
<h1>Danke!</h1>
<div>
<p>Wir werden gegen Ende der Einführungstage auf dieser Webseite und im wahrem Leben die richtige Lösung bekannt geben. Dabei werden wir auch die glücklichen Gewinner*innen küren, die das Spiel korrekt enträselt haben, und verkünden, wie und wo sich diese ihren Preis abholen können.</p>
</div>
<img src="static/images/sortierhut_lavendel_nerdy_eyes_crazy.png" alt="danke!" class="logo" />
<img src="static/images/sortierhut_blue_sunglasses.png" alt="danke!" class="logo" />
<img src="static/images/sortierhut_sand_turd.png" alt="danke!" class="logo" />
<img src="static/images/sortierhut_lavendel_straight.png" alt="danke!" class="logo" />
<img src="static/images/sortierhut_lavendel_nerdy_eyes_crazy.png" alt="danke!" class="logo" />
<img src="static/images/sortierhut_blue_sunglasses.png" alt="danke!" class="logo" />
<img src="static/images/sortierhut_sand_turd.png" alt="danke!" class="logo" />
<img src="static/images/sortierhut_lavendel_straight.png" alt="danke!" class="logo" />
{% endblock %}