├── .gitignore ├── README.rst ├── api ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── login_rest ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── requirements.txt └── templates └── login.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/.gitignore -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/README.rst -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/api/admin.py -------------------------------------------------------------------------------- /api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/api/apps.py -------------------------------------------------------------------------------- /api/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/api/migrations/0001_initial.py -------------------------------------------------------------------------------- /api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/api/models.py -------------------------------------------------------------------------------- /api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/api/serializers.py -------------------------------------------------------------------------------- /api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/api/tests.py -------------------------------------------------------------------------------- /api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/api/urls.py -------------------------------------------------------------------------------- /api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/api/views.py -------------------------------------------------------------------------------- /login_rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /login_rest/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/login_rest/settings.py -------------------------------------------------------------------------------- /login_rest/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/login_rest/urls.py -------------------------------------------------------------------------------- /login_rest/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/login_rest/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/authentication_token_django_rest/HEAD/templates/login.html --------------------------------------------------------------------------------