Skip to content

ma0c/authentication-django

Repository files navigation

Authentication

Authentication is a simple django module that provides a simple wrapper for django.contrib.auth.views, adding a custom look and feel and a modified sign up method with email confirmation

To get this work, make sure you got the email configuration in you settings.py

An example for use Gmail SMTPs server:

EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = '[email protected]'
EMAIL_HOST_PASSWORD = 'mypassword'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
DEFAULT_FROM_EMAIL = '[email protected]'

Also please edit the conf.py file, to customize your domain and other options

If you change the Strings Settings, remember to recompile the locales

./manage.py compilemessages

And edit the locale folder, for more information visit our blog.

Enjoy and feel free to put a ticket or write me to [email protected]