├── .gitignore ├── .vscode └── settings.json ├── README.md ├── graphical_pwd_auth ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── wsgi.cpython-37.pyc ├── settings.py ├── urls.py └── wsgi.py ├── home ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20191114_1014.py │ ├── 0003_auto_20191114_1402.py │ ├── 0004_logininfo_link.py │ ├── 0005_auto_20191114_1826.py │ ├── 0006_auto_20191114_1833.py │ ├── 0007_auto_20191115_0616.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── screenshots ├── email1.png ├── email2.png ├── gpwd1.png ├── gpwd10.png ├── gpwd2.png ├── gpwd3.png ├── gpwd4.png ├── gpwd5.png ├── gpwd6.png ├── gpwd7.png ├── gpwd8.png └── gpwd9.png ├── static └── images │ ├── crypto.jpg │ └── pwd │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 21.png │ ├── 22.png │ ├── 23.png │ ├── 24.png │ ├── 25.png │ ├── 26.png │ ├── 27.png │ ├── 28.png │ ├── 29.png │ ├── 3.png │ ├── 30.png │ ├── 31.png │ ├── 32.png │ ├── 33.png │ ├── 34.png │ ├── 35.png │ ├── 36.png │ ├── 37.png │ ├── 38.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png └── templates ├── base.html ├── home.html ├── login.html ├── pwd.html ├── register.html ├── reset.html └── reset_request.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/README.md -------------------------------------------------------------------------------- /graphical_pwd_auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphical_pwd_auth/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/graphical_pwd_auth/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /graphical_pwd_auth/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/graphical_pwd_auth/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /graphical_pwd_auth/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/graphical_pwd_auth/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /graphical_pwd_auth/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/graphical_pwd_auth/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /graphical_pwd_auth/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/graphical_pwd_auth/settings.py -------------------------------------------------------------------------------- /graphical_pwd_auth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/graphical_pwd_auth/urls.py -------------------------------------------------------------------------------- /graphical_pwd_auth/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/graphical_pwd_auth/wsgi.py -------------------------------------------------------------------------------- /home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/home/admin.py -------------------------------------------------------------------------------- /home/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/home/apps.py -------------------------------------------------------------------------------- /home/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/home/migrations/0001_initial.py -------------------------------------------------------------------------------- /home/migrations/0002_auto_20191114_1014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/home/migrations/0002_auto_20191114_1014.py -------------------------------------------------------------------------------- /home/migrations/0003_auto_20191114_1402.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/home/migrations/0003_auto_20191114_1402.py -------------------------------------------------------------------------------- /home/migrations/0004_logininfo_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/home/migrations/0004_logininfo_link.py -------------------------------------------------------------------------------- /home/migrations/0005_auto_20191114_1826.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/home/migrations/0005_auto_20191114_1826.py -------------------------------------------------------------------------------- /home/migrations/0006_auto_20191114_1833.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/home/migrations/0006_auto_20191114_1833.py -------------------------------------------------------------------------------- /home/migrations/0007_auto_20191115_0616.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/home/migrations/0007_auto_20191115_0616.py -------------------------------------------------------------------------------- /home/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/home/models.py -------------------------------------------------------------------------------- /home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/home/tests.py -------------------------------------------------------------------------------- /home/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/home/urls.py -------------------------------------------------------------------------------- /home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/home/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/manage.py -------------------------------------------------------------------------------- /screenshots/email1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/screenshots/email1.png -------------------------------------------------------------------------------- /screenshots/email2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/screenshots/email2.png -------------------------------------------------------------------------------- /screenshots/gpwd1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/screenshots/gpwd1.png -------------------------------------------------------------------------------- /screenshots/gpwd10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/screenshots/gpwd10.png -------------------------------------------------------------------------------- /screenshots/gpwd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/screenshots/gpwd2.png -------------------------------------------------------------------------------- /screenshots/gpwd3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/screenshots/gpwd3.png -------------------------------------------------------------------------------- /screenshots/gpwd4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/screenshots/gpwd4.png -------------------------------------------------------------------------------- /screenshots/gpwd5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/screenshots/gpwd5.png -------------------------------------------------------------------------------- /screenshots/gpwd6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/screenshots/gpwd6.png -------------------------------------------------------------------------------- /screenshots/gpwd7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/screenshots/gpwd7.png -------------------------------------------------------------------------------- /screenshots/gpwd8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/screenshots/gpwd8.png -------------------------------------------------------------------------------- /screenshots/gpwd9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/screenshots/gpwd9.png -------------------------------------------------------------------------------- /static/images/crypto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/crypto.jpg -------------------------------------------------------------------------------- /static/images/pwd/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/1.png -------------------------------------------------------------------------------- /static/images/pwd/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/10.png -------------------------------------------------------------------------------- /static/images/pwd/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/11.png -------------------------------------------------------------------------------- /static/images/pwd/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/12.png -------------------------------------------------------------------------------- /static/images/pwd/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/13.png -------------------------------------------------------------------------------- /static/images/pwd/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/14.png -------------------------------------------------------------------------------- /static/images/pwd/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/15.png -------------------------------------------------------------------------------- /static/images/pwd/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/16.png -------------------------------------------------------------------------------- /static/images/pwd/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/17.png -------------------------------------------------------------------------------- /static/images/pwd/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/18.png -------------------------------------------------------------------------------- /static/images/pwd/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/19.png -------------------------------------------------------------------------------- /static/images/pwd/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/2.png -------------------------------------------------------------------------------- /static/images/pwd/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/20.png -------------------------------------------------------------------------------- /static/images/pwd/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/21.png -------------------------------------------------------------------------------- /static/images/pwd/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/22.png -------------------------------------------------------------------------------- /static/images/pwd/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/23.png -------------------------------------------------------------------------------- /static/images/pwd/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/24.png -------------------------------------------------------------------------------- /static/images/pwd/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/25.png -------------------------------------------------------------------------------- /static/images/pwd/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/26.png -------------------------------------------------------------------------------- /static/images/pwd/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/27.png -------------------------------------------------------------------------------- /static/images/pwd/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/28.png -------------------------------------------------------------------------------- /static/images/pwd/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/29.png -------------------------------------------------------------------------------- /static/images/pwd/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/3.png -------------------------------------------------------------------------------- /static/images/pwd/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/30.png -------------------------------------------------------------------------------- /static/images/pwd/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/31.png -------------------------------------------------------------------------------- /static/images/pwd/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/32.png -------------------------------------------------------------------------------- /static/images/pwd/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/33.png -------------------------------------------------------------------------------- /static/images/pwd/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/34.png -------------------------------------------------------------------------------- /static/images/pwd/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/35.png -------------------------------------------------------------------------------- /static/images/pwd/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/36.png -------------------------------------------------------------------------------- /static/images/pwd/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/37.png -------------------------------------------------------------------------------- /static/images/pwd/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/38.png -------------------------------------------------------------------------------- /static/images/pwd/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/4.png -------------------------------------------------------------------------------- /static/images/pwd/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/5.png -------------------------------------------------------------------------------- /static/images/pwd/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/6.png -------------------------------------------------------------------------------- /static/images/pwd/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/7.png -------------------------------------------------------------------------------- /static/images/pwd/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/8.png -------------------------------------------------------------------------------- /static/images/pwd/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/static/images/pwd/9.png -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/pwd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/templates/pwd.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/templates/reset.html -------------------------------------------------------------------------------- /templates/reset_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohith7548/Graphical-Password-User-Authentincation/HEAD/templates/reset_request.html --------------------------------------------------------------------------------