Authentication is now provided via django-allauth, so refer to their documentation [here](https://docs.allauth.org/en/latest/installation/quickstart.html).
For OpenID Connect, add the following to your local_settings.py file:
```python
INSTALLED_APPS+=[
'allauth.socialaccount.providers.openid_connect',
]
SOCIALACCOUNT_PROVIDERS={
"openid_connect":{
"EMAIL_AUTHENTICATION":True,# Only add this line if you want existing accounts to be linked by email