In this guide, we are going to be focus on Login and Logout Feauture.
Tutorial Link - https://studygyaan.com/django/how-to-use-built-in-login-and-logout-authentication-system-in-django
In this short tutorial, I will explain how to use Change Password and Reset or Forgot Password Functionality in Django. The process for Password Reset involves sending emails. For that matter, we are going to use console email backend and check if everything is functioning. Follow this tutorial how to send email using SMTP Email Service.
Tutorial Link - https://studygyaan.com/django/how-to-create-built-in-change-password-and-reset-password-in-django
In this tutorial, we will learn how to create Sign Up or Registration Form in Django for User Registration. We will be using UserCreationForm which is an in-built form for User Registration. User Sign Up can be created by the third person or by self. Both the strategics can be achieved by this tutorial. You can get the working application of this tutorial on GitHub
- Create a folder and put all the files inside it.
- Create a virtual environtment -
virtualenv env
- Activate VirtualENV -
source env/bin/activate
- Run requirements.txt -
pip3 install -r requirements.txt
- Run the Application -
python3 manage.py runserver
- Go to - http://localhost:8000/