Metadata-Version: 1.1
Name: django-easyregistration
Version: 0.1
Summary: A simple Django app to manage users login/logout and registration.
Home-page: https://github.com/hcosta/django-easyregistration
Author: Hector Costa
Author-email: hcostaguzman@gmail.com
License: GPLv2
Description: Django-easyregistration
        =======================
        
        **The easy way to manage frontend users auth and registration in Django**
        
        Django-easyregistration is a simple Django app to manage frontend users login/logout and registration process, build with class based views and Twitter Bootstrap.
        
        Screenshots
        -----------
        .. image:: http://hcosta.info/site_media/uploads/portfolio/2013-12-django-easyregistration/screen1.png
           :align: center
        
        .. image:: http://hcosta.info/site_media/uploads/portfolio/2013-12-django-easyregistration/screen2.png
           :align: center
        
        Requirements
        -----------
        
        * Django 1.5/1.6
        
        Changes
        -----------
        
        * Django-easyregistration 0.1beta (December 31th, 2013): Spanish localization added.
        
        Quick start
        -----------
        
        1. Install it with pip in your env::
        
            $ pip install django-easyregistration
        
        2. Add "registration" to your INSTALLED_APPS setting like this::
        
        .. code-block:: python
        
                INSTALLED_APPS = (
                    ...
                    'registration',
                )
        
        3. Include the registration URLconf in your project urls.py like this::
        
        .. code-block:: python
        
                url(r'^accounts/', include('registration.urls')),
        
        4. Configure manually your preferred URLS in 'registration/config.py' file.
        
        5. Start the development server and visit http://127.0.0.1:8000/accounts/login/ or create an account at http://127.0.0.1:8000/accounts/register/.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
