Merge pull request #425 from eReuse/feature/4245

Feature/4245
This commit is contained in:
cayop 2023-01-31 13:12:35 +01:00 committed by GitHub
commit cbf2d607a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import flask
from decouple import config
from flask import Blueprint
from flask import current_app as app
from flask import g
@ -46,7 +47,7 @@ class LoginView(View):
url_reset_password = "#"
if 'register' in app.blueprints.keys():
url_register = flask.url_for('register.user-registration')
url_register = config("PRICES_PAGE", "#")
if 'reset_password' in app.blueprints.keys():
url_reset_password = flask.url_for('reset_password.reset-password')