diff --git a/app/main/views.py b/app/main/views.py index 8f85539920c6abdb438a6b3041945dd2255b99e2..1552b99b2499b4d3c163bda0254fcc5cff3ea523 100644 --- a/app/main/views.py +++ b/app/main/views.py @@ -53,3 +53,9 @@ def poster(): flash('Invalid email/username or password.') return render_template('main/poster.html.j2', login_form=login_form, title='Poster') + + +@main.route('/privacy_policy') +def privacy_policy(): + return render_template('main/privacy_policy.html.j2', + title='Privacy policy') diff --git a/app/templates/main/privacy_policy.html.j2 b/app/templates/main/privacy_policy.html.j2 new file mode 100644 index 0000000000000000000000000000000000000000..44e97e7d502ede1d268361837a60a651556bf6d9 --- /dev/null +++ b/app/templates/main/privacy_policy.html.j2 @@ -0,0 +1,9 @@ +{% extends "nopaque.html.j2" %} + +{% block page_content %} + +<h3>Privacy policy</h3> + + + +{% endblock %}