Django Login / Logout
Create a new application First, create a new application called users by executing the startapp command: The project directory will look like this: ├── blog ├── db.sqlite3 ├── manage.py ├── mysite ├── static ├── templates └── usersCode language: plaintext (plaintext) Second, register the users application in the installed apps of the settings.py of the project: INSTALLED_APPS = [ ‘django.contrib.admin’, ‘django.contrib.auth’,Continue Reading
