Answer the question
In order to leave comments, you need to log in
There are 3 functions why returns index.html?
1 function
@app.route('/')
def index():
checkConfirm(current_user)
return render_template('index.html')
def checkConfirm(user):
if user.verification == True and user.is_authenticated :
print('kek')
return redirect(url_for('reg.confirmed'))
@reg.route('/confirmed')
def confirmed():
return render_template('reg/confirm.html')
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question