def signup(): form = SignUpForm() if form.validate_on_submit(): hashed_password = bcrypt.generate_password_hash(form.password.data).decode('utf-8') user = User( username=form.username.data, password=hashed_password ) db.session.add(user) db.session.commit() flash('Account Created.') return redirect(url_for('main.login')) return render_template('signup.html', form=form)
def signup(): print('in signup') form = SignUpForm() if form.validate_on_submit(): hashed_password = bcrypt.generate_password_hash( form.password.data).decode('utf-8') user = User(username=form.username.data, password=hashed_password) db.session.add(user) db.session.commit() flash('Account Created.') print('created') return redirect(url_for('auth.login')) print(form.errors) return render_template('signup.html', form=form, current_user=current_user)
def signup(): print("in signup") form = SignUpForm() if form.validate_on_submit(): hashed_password = bcrypt.generate_password_hash(form.password.data).decode( "utf-8" ) user = User(username=form.username.data, password=hashed_password) db.session.add(user) db.session.commit() flash("Account Created.") print("created") return redirect(url_for("auth.login")) print(form.errors) return render_template("signup.html", form=form)