Metadata-Version: 2.0
Name: django-recontact
Version: 0.2
Summary: Django contact application with invisible recaptcha
Home-page: https://bitbucket.org/marc_culler/recontact
Author: Marc Culler
Author-email: mcbugs000@gmail.com
License: GPL
Keywords: django contact recaptcha
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: django

=========
recontact
=========

|

Description
-----------

This is a pluggable django application which provides a contact form
that generates an email message to specified addresses.  The form is
protected by an invisible recaptcha.

|

Example
--------

A small django project is included, with an example django app
containing a contact form.

To set up the example server, run the following commands::

   $ python3 -m venv pythonenv
   $ source pythonenv/bin/activate
   $ python -m pip install django
   $ python setup.py install
   $ cd example
   $ python manage.py migrate
   $ python manage.py runserver

You should now have an http server running on localhost port 8000.
Connect to localhost:8000 with your web browser to test the form.


