simple-django-login icon indicating copy to clipboard operation
simple-django-login copied to clipboard

Example created for the blog post How to Use Django's Built-in Login System

What's this repository about?

Example created for the blog post How to Use Django's Built-in Login System at simpleisbetterthancomplex.com.

How do I run this project locally?

1. Clone the repository:

git clone https://github.com/sibtc/simple-django-login.git

2. Run migrations:

python manage.py migrate

3. Create a user:

python manage.py createsuperuser

4. Run the server:

python manage.py runserver

5. And open 127.0.0.1:8000/login in your web browser.