A Django app to provide integration with .WHMCS.
Add the following to your settings.py:
AUTHENTICATION_BACKENDS = (
'whmcs.backends.AccountBackend',
'django.contrib.auth.backends.ModelBackend',
)
AUTH_PROFILE_MODULE = 'whmcs.UserProfile'
from libs.whmcs.settings import *
Forked from: .robrocker7