Project Solution: Make a Signup Form
Let’s review the solution to the previous challenge.
Solution
B ÃK ^ ã @ s d S )N© r r r úS/Users/wasifibrahim/Documents/new_project/django_project/django_project/__init__.pyÚ<module> ó
Explanation
Let’s take a look at how we solved this problem.
zing_it/forms.py
file
-
We created a class called
Signup
and added all the necessary fields which were required for this challenge. -
We added some validators in the form fields.
-
We ...