Simple Django User Sign Up

Adi Ramadhan
2 min readJul 25, 2020

Basic sign up user with login-logout apps with bootstrap template.

Apps Design

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

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')
TEMPLATES in myproject/setting.py

Step 4: Create HTML Files in myapp/templates Folder
Create bootstrap base, create myapp/templates/base.html CDN Bootstrap.

myapp/templates/base.html

Create signup html, create myapp/templates/signup.html

myapp/templates/signup.html

Create login html, create myapp/templates/login.html

myapp/templates/login.html

Create logout html, create myapp/templates/logout.html

myapp/templates/logout.html

Create secure html, create myapp/templates/secure.html

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.

myapp/views.py

Step 6: Setup URLs in myapp and myproject Folder
Create myapp/urls.py

myapp/urls.py

Update myproject/urls.py

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:

http://127.0.0.1:8000/signup

Try login with registered user, http://127.0.0.1:8000/login

--

--