mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
13 lines
300 B
Python
13 lines
300 B
Python
from flask import render_template
|
|
from . import auth
|
|
|
|
|
|
@auth.route('/login', methods=['GET', 'POST'])
|
|
def login():
|
|
return render_template('auth/login.html.j2', title='Log in')
|
|
|
|
|
|
@auth.route('/register', methods=['GET', 'POST'])
|
|
def register():
|
|
return render_template('auth/register.html.j2')
|