/django_auth_project_template

django project template with preconfigured login and register system. With boostrap4 in place for easy design

Primary LanguageHTML

BAREBONES template for django project development.

  • Contain user authentication for django system
  • CSS Framework: bootstrap 4
  • uses django crispy forms for displaying forms

home

login

register

reset password

dashboard

change password

install all libraries

pip install -r requirements.txt

check migrations

python manage.py makemigrations
python manage.py migrate

create a web admin

python manage.py createsuperuser

(optional) create an new app

python manage.py startapp <app-name-here>

run the webserver

python manage.py runserver

local web server for testing mail

python -m smtpd -n -c DebuggingServer localhost:1025

link to simple ajax lib

https://lucidar.me/en/javascript-modules/ajax/