Add login and register templates and routes

This commit is contained in:
Stephan Porada
2019-07-04 15:17:51 +02:00
parent e127e1e5c4
commit fed711d23b
5 changed files with 96 additions and 0 deletions

View File

@ -11,4 +11,7 @@ def create_app(config_name):
def index():
return render_template('base.html.j2')
from .auth import auth as auth_blueprint
app.register_blueprint(auth_blueprint, url_prefix='/auth')
return app