Metadata-Version: 2.1
Name: django-accountutils
Version: 0.2
Summary: A django app for basic utilities - change password, reset password
Home-page: http://www.devtech.in/
Author: Tushar Agarwal
Author-email: tamyworld@gmail.com
License: BSD License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content

=====
Account Utils
=====

Accountutils is a simple django application to facilitate basic functionalities, like forgot password, change password, for api based projects.

Quick start
-----------

1. Add "accountutils" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'accountutils',
    ]

2. Include the accountutils URLconf in your project urls.py like this::

    url('utils/', include('accountutils.urls')),

3. Run `python manage.py migrate` to create the accountutils models.

