├── AuthenticationProject ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── settings.cpython-311.pyc │ └── urls.cpython-311.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── Core ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── admin.cpython-311.pyc │ ├── apps.cpython-311.pyc │ ├── models.cpython-311.pyc │ ├── urls.cpython-311.pyc │ └── views.cpython-311.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-311.pyc │ │ └── __init__.cpython-311.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── manage.py ├── readme.md ├── resources ├── doc │ └── readme.md └── required files │ ├── forgot_password.html │ ├── index.html │ ├── login.html │ ├── password_reset_sent.html │ ├── register.html │ ├── reset_password.html │ └── style.css ├── static └── style.css └── templates ├── forgot_password.html ├── index.html ├── login.html ├── password_reset_sent.html ├── register.html └── reset_password.html /AuthenticationProject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AuthenticationProject/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/AuthenticationProject/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /AuthenticationProject/__pycache__/settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/AuthenticationProject/__pycache__/settings.cpython-311.pyc -------------------------------------------------------------------------------- /AuthenticationProject/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/AuthenticationProject/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /AuthenticationProject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/AuthenticationProject/asgi.py -------------------------------------------------------------------------------- /AuthenticationProject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/AuthenticationProject/settings.py -------------------------------------------------------------------------------- /AuthenticationProject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/AuthenticationProject/urls.py -------------------------------------------------------------------------------- /AuthenticationProject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/AuthenticationProject/wsgi.py -------------------------------------------------------------------------------- /Core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Core/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /Core/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /Core/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /Core/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /Core/__pycache__/views.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/__pycache__/views.cpython-311.pyc -------------------------------------------------------------------------------- /Core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/admin.py -------------------------------------------------------------------------------- /Core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/apps.py -------------------------------------------------------------------------------- /Core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/migrations/0001_initial.py -------------------------------------------------------------------------------- /Core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/migrations/__pycache__/0001_initial.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/migrations/__pycache__/0001_initial.cpython-311.pyc -------------------------------------------------------------------------------- /Core/migrations/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/migrations/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/models.py -------------------------------------------------------------------------------- /Core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/tests.py -------------------------------------------------------------------------------- /Core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/urls.py -------------------------------------------------------------------------------- /Core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/Core/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/manage.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/readme.md -------------------------------------------------------------------------------- /resources/doc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/resources/doc/readme.md -------------------------------------------------------------------------------- /resources/required files/forgot_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/resources/required files/forgot_password.html -------------------------------------------------------------------------------- /resources/required files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/resources/required files/index.html -------------------------------------------------------------------------------- /resources/required files/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/resources/required files/login.html -------------------------------------------------------------------------------- /resources/required files/password_reset_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/resources/required files/password_reset_sent.html -------------------------------------------------------------------------------- /resources/required files/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/resources/required files/register.html -------------------------------------------------------------------------------- /resources/required files/reset_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/resources/required files/reset_password.html -------------------------------------------------------------------------------- /resources/required files/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/resources/required files/style.css -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/forgot_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/templates/forgot_password.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/password_reset_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/templates/password_reset_sent.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/reset_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProtonGuy/DjangoFullAuth/HEAD/templates/reset_password.html --------------------------------------------------------------------------------