Metadata-Version: 2.0
Name: Django-sign-up
Version: 0.0.4
Summary: DJango sign up
Home-page: UNKNOWN
Author: harish r
Author-email: harish.r@imailt.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

Django sign up testing package
==============================

**Description:**

    The main motive is to upload our own package on PyPI. so for doing testing, I have
    uploaded it on this platform.

**installation:**

Just run a command on the terminal 

    pip install Django_sign_up.


1. 	Add into an installed app of settings.py file

		INSTALLED_APPS = [
		...
		'Django_sign_up',
		...
		]

2. 	Then add this URL in the main urls.py  

		url(r'', include('Django_sign_up.url')),


3. 	Include this template tag in the template file where you want to display the form :

		{% include 'Django_sign_up/register.html' %}

