Simple Django app to manage frontend users login/logout and registration process, build with class based views and Twitter Bootstrap.
- 0.2 (December 26th, 2020): Django 3.0 compatibility check.
- 0.1beta (December 31th, 2013): Spanish localization added.
- Install it with pip in your env:
pipenv install -e git+https://github.com/hcosta/django-easyregistration#egg=registration
- Add
registration
to yourINSTALLED_APPS
settings:
INSTALLED_APPS = (
# ...
'registration',
)
- Include the registration URLconf in your project
urls.py
:
urlpatterns = [
# ...
path('accounts/', include('registration.urls')),
]
-
Configure your preferred URLS in
registration/config.py
file. -
Start the development server: