Flask-Web-App-Tutorial icon indicating copy to clipboard operation
Flask-Web-App-Tutorial copied to clipboard

Code for the note storing flask web app made during a YouTube video.

Results 102 Flask-Web-App-Tutorial issues
Sort by recently updated
recently updated
newest added

Hi everyone, I followed Tims (amazing) video on YT - I'm now trying to use the concepts from the video to rebuild this project into a small web shop, I've...

email = request.form.get('email') password = request.form.get('password1') user = User.query.filter_by(email=email).first() if user: if check_password_hash(user.password, password): flash('Logged in successfully!', category='success')Open an interactive python shell in this frame login_user(user, remember=True) return redirect(url_for('views.home')) else:...

https://github.com/techwithtim/Flask-Web-App-Tutorial/blob/3a35f0e491e145e55f0259f848b9fbe64a7a5123/website/templates/home.html#L8 ![home](https://user-images.githubusercontent.com/79733126/147780309-9ea21b3d-732f-4333-8d19-e61781031ee3.png) I corrected my problem by adding Apostrophe: "deletedNote('{{ note.id }}')" I don't know if it's a good solution or it can help someone who had the same problem...

I am getting this error. Added the code as suggested to base.html and home.html jinja2.exceptions.UndefinedError

Hi all, I'm at the ~14 min mark of the video and trying to run the main.py script which doesnt work. [Someone else](https://github.com/techwithtim/Flask-Web-App-Tutorial/issues/46) claimed the same issue and closed it...

I'm not sure why I keep having this issue. I check my code since I assumed the problem was in the log-out function but I'm not really sure how to...