├── LICENSE ├── README.md ├── ReactApp.png ├── drf_social ├── db.sqlite3 ├── manage.py ├── requirements.txt ├── restapi_auth │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── social_login │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py └── react_auth ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── index.css ├── index.js ├── logo.svg ├── serviceWorker.js ├── services ├── fbLogin.js └── googleLogin.js └── setupTests.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/README.md -------------------------------------------------------------------------------- /ReactApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/ReactApp.png -------------------------------------------------------------------------------- /drf_social/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf_social/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/manage.py -------------------------------------------------------------------------------- /drf_social/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/requirements.txt -------------------------------------------------------------------------------- /drf_social/restapi_auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf_social/restapi_auth/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/restapi_auth/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /drf_social/restapi_auth/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/restapi_auth/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /drf_social/restapi_auth/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/restapi_auth/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /drf_social/restapi_auth/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/restapi_auth/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /drf_social/restapi_auth/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/restapi_auth/asgi.py -------------------------------------------------------------------------------- /drf_social/restapi_auth/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/restapi_auth/settings.py -------------------------------------------------------------------------------- /drf_social/restapi_auth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/restapi_auth/urls.py -------------------------------------------------------------------------------- /drf_social/restapi_auth/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/restapi_auth/wsgi.py -------------------------------------------------------------------------------- /drf_social/social_login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf_social/social_login/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/social_login/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /drf_social/social_login/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/social_login/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /drf_social/social_login/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/social_login/admin.py -------------------------------------------------------------------------------- /drf_social/social_login/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/social_login/apps.py -------------------------------------------------------------------------------- /drf_social/social_login/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf_social/social_login/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/social_login/models.py -------------------------------------------------------------------------------- /drf_social/social_login/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/social_login/tests.py -------------------------------------------------------------------------------- /drf_social/social_login/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/drf_social/social_login/views.py -------------------------------------------------------------------------------- /react_auth /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /.gitignore -------------------------------------------------------------------------------- /react_auth /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /README.md -------------------------------------------------------------------------------- /react_auth /package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /package-lock.json -------------------------------------------------------------------------------- /react_auth /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /package.json -------------------------------------------------------------------------------- /react_auth /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /public/favicon.ico -------------------------------------------------------------------------------- /react_auth /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /public/index.html -------------------------------------------------------------------------------- /react_auth /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /public/logo192.png -------------------------------------------------------------------------------- /react_auth /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /public/logo512.png -------------------------------------------------------------------------------- /react_auth /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /public/manifest.json -------------------------------------------------------------------------------- /react_auth /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /public/robots.txt -------------------------------------------------------------------------------- /react_auth /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /src/App.css -------------------------------------------------------------------------------- /react_auth /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /src/App.js -------------------------------------------------------------------------------- /react_auth /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /src/App.test.js -------------------------------------------------------------------------------- /react_auth /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /src/index.css -------------------------------------------------------------------------------- /react_auth /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /src/index.js -------------------------------------------------------------------------------- /react_auth /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /src/logo.svg -------------------------------------------------------------------------------- /react_auth /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /src/serviceWorker.js -------------------------------------------------------------------------------- /react_auth /src/services/fbLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /src/services/fbLogin.js -------------------------------------------------------------------------------- /react_auth /src/services/googleLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /src/services/googleLogin.js -------------------------------------------------------------------------------- /react_auth /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratiksinghchauhan/django_react_socialauth/HEAD/react_auth /src/setupTests.js --------------------------------------------------------------------------------