Merge pull request #2093 from alphagov/privacy-page

Privacy page
This commit is contained in:
Pete Herlihy
2018-05-23 15:42:18 +01:00
committed by GitHub
5 changed files with 150 additions and 1 deletions

View File

@@ -37,6 +37,11 @@ def cookies():
return render_template('views/cookies.html')
@main.route('/privacy')
def privacy():
return render_template('views/privacy.html')
@main.route('/trial-mode')
def trial_mode():
return redirect(url_for('.using_notify') + '#trial-mode', 301)