enhance modals and terms of use html

This commit is contained in:
Patrick Jentsch
2024-12-23 14:49:06 +01:00
parent d4cd313940
commit 80604bf8de
11 changed files with 357 additions and 397 deletions

View File

@ -56,7 +56,7 @@ def news():
)
@bp.route('/privacy_policy')
@bp.route('/privacy-policy')
def privacy_policy():
return render_template(
'main/privacy_policy.html.j2',
@ -64,11 +64,11 @@ def privacy_policy():
)
@bp.route('/terms_of_use')
@bp.route('/terms-of-use')
def terms_of_use():
return render_template(
'main/terms_of_use.html.j2',
title='Terms of Use'
title='Terms of use'
)