Project Challenge: Inserting Users in Sign-Up
Understand how to update a Flask sign-up view to insert new users into a database model. Learn to handle unique email constraints gracefully by displaying informative messages without crashing the application.
We'll cover the following...
We'll cover the following...
Problem statement
In this challenge, we will be modifying the signup view that we made previously. In that function, we were inserting new users into the list. However, now that we have the models created, we should insert the new ...