Change urls/views to be (subjectively) simpler

This commit is contained in:
Matt Wright
2012-08-16 17:25:24 -04:00
parent 1d378a6827
commit 1d8b2f8342
9 changed files with 21 additions and 44 deletions
-4
View File
@@ -56,10 +56,6 @@ def create_app(auth_config):
def index():
return render_template('index.html', content='Home Page')
@app.route('/custom_login')
def custom_login():
return render_template('login.html', content='Custom Login Page', form=LoginForm())
@app.route('/profile')
@login_required
def profile():