Skip to content

earthcomfy/Django-registration-and-login-system

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
September 5, 2021 18:26
September 1, 2021 18:00
August 17, 2021 10:09
September 30, 2022 11:38
August 15, 2021 15:44

Django-registration-and-login-system

This web app has been developed using the popular Django framework and Bootstrap for the frontend. My motivation to build this project is so that I can learn about Django and tighten up my skills. This mini-app can be easily integrated into a bigger system project that needs to have a registration and login system.

Basic Features of The App

  • Register – Users can register and create a new profile
  • Login - Registered users can login using username and password
  • Social Apps Login – Users can login using their GitHub or Google account
  • User Profile - Once logged in, users can create and update additional information such as avatar and bio in the profile page
  • Update Profile – Users can update their information such as username, email, password, avatar and bio
  • Remember me – Cookie Option, users don’t have to provide credentials every time they hit the site
  • Forgot Password – Users can easily retrieve their password if they forget it
  • Admin Panel – admin can CRUD users

ScreenShot

Tutorial

Here is a tutorial on how to build this project.

Quick Start

To get this project up and running locally on your computer follow the following steps.

  1. Set up a python virtual environment
  2. Run the following commands
$ pip install -r requirements.txt
$ python manage.py migrate
$ python manage.py createsuperuser
$ python manage.py runserver
  1. Open a browser and go to http://localhost:8000/