Simple Django User Sign Up
Basic sign up user with login-logout apps with bootstrap template.
Using UserCreationForm, official docs here.
Step 1: Preparation, Create Django Project, Initial Migration
create virtualenv: virtualenv venv
start virtualenv: venv/Scripts/activate
install Django in virtualenv: pip install django==3.0
Create Django: django-admin startproject myproject
Go to myproject folder: cd myproject
Initial Migration: python manage.py migrate
Step 2: Create Django Apps
Create apps: python manage.py startapp myapp
Add myapp to INSTALLED_APPS in myproject/settings.py
Step 3: Set up Templates Folder
Create folder templates in myapp
Add template directory in TEMPLATES parameter in myproject/settings.py
os.path.join(BASE_DIR, 'myapp', 'templates')
Step 4: Create HTML Files in myapp/templates Folder
Create bootstrap base, create myapp/templates/base.html CDN Bootstrap.
Create signup html, create myapp/templates/signup.html
Create login html, create myapp/templates/login.html
Create logout html, create myapp/templates/logout.html
Create secure html, create myapp/templates/secure.html
Step 5: Create Function Based View in myapp/views.py
Update myapp/views.py. Add Function Based View method.
For secure page, add login_required annotation.
Step 6: Setup URLs in myapp and myproject Folder
Create myapp/urls.py
Update myproject/urls.py
Step 7: Setup Login URL and Login Redirect Page
Add in myproject/setting.py
LOGIN_URL = '/login/'LOGIN_REDIRECT_URL = '/secure'
Step 8: Run Server and Testing
Run Server: python manage.py runserver
Testing:
Try login with registered user, http://127.0.0.1:8000/login