Matthew Miller

Results 2 comments of Matthew Miller

i am having the same issue @auth.route('/signup', methods=['GET', 'POST']) def signup(): if request.method == 'POST': email = request.form.get('email') first_name = request.form.get('firstName') password1 = request.form.get('password1') password2 = request.form.get('password2') user = User.query.filter_by(email=email).first()...

oh my goodness, raychone, you literally saved my insanity - this helped me finally figure out the issue. I was finding this same sort of thing on the documentation on...