├── .autogit ├── autogit.json └── logs │ ├── log-1-7-2020-23-39-45.txt │ ├── log-2-7-2020-0-40-5.txt │ └── log-2-7-2020-0-9-55.txt ├── .gitignore ├── README.md ├── accounts ├── __init__.py ├── admin.py ├── apps.py ├── backends.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ ├── profile │ │ ├── profile.html │ │ └── profile_edit.html │ └── registration │ │ ├── logged_out.html │ │ ├── login.html │ │ ├── password_change_form.html │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ ├── password_reset_email.html │ │ ├── password_reset_form.html │ │ └── signup.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── project ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py └── templates └── base_generic.html /.autogit/autogit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/.autogit/autogit.json -------------------------------------------------------------------------------- /.autogit/logs/log-1-7-2020-23-39-45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/.autogit/logs/log-1-7-2020-23-39-45.txt -------------------------------------------------------------------------------- /.autogit/logs/log-2-7-2020-0-40-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/.autogit/logs/log-2-7-2020-0-40-5.txt -------------------------------------------------------------------------------- /.autogit/logs/log-2-7-2020-0-9-55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/.autogit/logs/log-2-7-2020-0-9-55.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/README.md -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/apps.py -------------------------------------------------------------------------------- /accounts/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/backends.py -------------------------------------------------------------------------------- /accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/forms.py -------------------------------------------------------------------------------- /accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/templates/profile/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/templates/profile/profile.html -------------------------------------------------------------------------------- /accounts/templates/profile/profile_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/templates/profile/profile_edit.html -------------------------------------------------------------------------------- /accounts/templates/registration/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/templates/registration/logged_out.html -------------------------------------------------------------------------------- /accounts/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/templates/registration/login.html -------------------------------------------------------------------------------- /accounts/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /accounts/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /accounts/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /accounts/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /accounts/templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/templates/registration/password_reset_email.html -------------------------------------------------------------------------------- /accounts/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /accounts/templates/registration/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/templates/registration/signup.html -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/tests.py -------------------------------------------------------------------------------- /accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/urls.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/accounts/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/manage.py -------------------------------------------------------------------------------- /project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/project/settings.py -------------------------------------------------------------------------------- /project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/project/urls.py -------------------------------------------------------------------------------- /project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/project/wsgi.py -------------------------------------------------------------------------------- /templates/base_generic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/django-accounts/HEAD/templates/base_generic.html --------------------------------------------------------------------------------