Add endpoint for new page

This commit is contained in:
Chris Hill-Scott
2019-10-17 16:15:28 +01:00
parent 5494146401
commit bc32315fbe
4 changed files with 25 additions and 8 deletions

View File

@@ -305,6 +305,13 @@ def message_status():
)
@main.route('/features/get-started')
def get_started():
return render_template(
'views/get-started.html'
)
@main.route('/trial-mode')
def trial_mode():
return redirect(url_for('.trial_mode_new'), 301)