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.
- 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
To get this project up and running locally on your computer follow the following steps.
- Set up a python virtual environment
- Run the following commands
$ pip install -r requirements.txt
$ python manage.py migrate
$ python manage.py createsuperuser
$ python manage.py runserver
- Open a browser and go to http://localhost:8000/