- localhost/auth/register
- localhost/auth/login
- localhost/auth/user
- localhost/auth/resend-email
- register : anyone
- login : anyone
- user : need Authentication
- resend-email : anyone
More:
- after user registration, system would send an email for him and he can confirm his account.
- without verifying account, user can't login.
- password can't be less than 8 and shouldn't be all numeric
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver