Move all pages into their own directory

There are a lot of pages. It seems like a good idea to keep them in one place,
so they don’t get mixed up with partials and layouts.
This commit is contained in:
Chris Hill-Scott
2015-12-11 09:48:52 +00:00
parent 01c5bf5190
commit 2f980ab622
33 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ from app.main.views import send_sms_code
@main.route("/sign-in", methods=(['GET']))
def render_sign_in():
return render_template('signin.html', form=LoginForm())
return render_template('views/signin.html', form=LoginForm())
@main.route('/sign-in', methods=(['POST']))