Django Contact Form with Google Recaptcha v3 - integration.
Project description
Django-contact-form is a simple Django Contact Form with Google Recaptcha v3 - integration.
Quick start
Add “form” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'contact-form', ]
Include the polls URLconf in your project urls.py like this:
path('', include('contact-form.urls')),
Run python manage.py migrate to create the form models.
For finding Templates add this line into TEMPLATES in settings.py:
‘DIRS’: [os.path.join(BASE_DIR, ‘templates’)],
5.To setup Email and Recaptcha just paste this code with your keys in settings.py:
EMAIL_HOST = ‘smtp.foo.com’, EMAIL_USE_TLS = True, EMAIL_PORT = 587, EMAIL_HOST_USER = ‘foo@gfoo.com’, EMAIL_HOST_PASSWORD = ‘swordfish’,
RECAPTCHA_SITE_KEY = “”, RECAPTCHA_SECRET_KEY = “”,
Visit http://127.0.0.1:8000/contact/ to check the contact-form.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for django-contact-recaptcha-v3-1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac808e5a7420debac710cdad8271604857207810e57ff97cee0d008b75f12830 |
|
MD5 | af7917ff82e0b8e8e60c69fbd5c3a1f3 |
|
BLAKE2b-256 | f7d46baf588ea3a0f8e5e292ed434a9f388c13bd5287933bae18d55693675f2c |