Welcome everyone to part 9 of the web development in Python with Django. In this part, we will continue working on our user handling; we'll bring some dynamics to the page and some ability for users to log in and log out on our page.
If we want to do this quickly, we don't need to design anything for these functions. Django already has built-in login and logout functions! For rapid development, that's enough, but what about the messaging system we created in the last tutorial? Or suppose we would like to use logins for either username or email or improve authentication with reCAPTCHA. In that case, we can't get these functionalities from these built-in functions, so let's create our custom view functions for these future purposes.
Text version tutorial: https://pylessons.com/django-login-lo...
GitHub code: https://github.com/pythonlessons/Djan...
#django #programming #educational #technology #web #website