Add privacy

This commit is contained in:
Patrick Jentsch 2020-03-18 14:44:15 +01:00
parent c5e56692b1
commit 4c67777977
2 changed files with 15 additions and 0 deletions

View File

@ -53,3 +53,9 @@ def poster():
flash('Invalid email/username or password.') flash('Invalid email/username or password.')
return render_template('main/poster.html.j2', login_form=login_form, return render_template('main/poster.html.j2', login_form=login_form,
title='Poster') title='Poster')
@main.route('/privacy_policy')
def privacy_policy():
return render_template('main/privacy_policy.html.j2',
title='Privacy policy')

View File

@ -0,0 +1,9 @@
{% extends "nopaque.html.j2" %}
{% block page_content %}
<h3>Privacy policy</h3>
{% endblock %}