diff --git a/docs/advanced_usage.md b/docs/advanced_usage.md index 7ca854f56..d4ff80f87 100644 --- a/docs/advanced_usage.md +++ b/docs/advanced_usage.md @@ -692,3 +692,7 @@ PAPERLESS_SOCIALACCOUNT_PROVIDERS=' ``` More details about configuration option for various providers can be found in the [allauth documentation](https://docs.allauth.org/en/latest/socialaccount/providers/index.html#provider-specifics). + +### Disabling Regular Login + +Once external auth is set up, 'regular' login can be disabled with the [PAPERLESS_DISABLE_REGULAR_LOGIN](configuration.md#PAPERLESS_DISABLE_REGULAR_LOGIN) setting. diff --git a/docs/configuration.md b/docs/configuration.md index ce85599a5..43eff582b 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -572,6 +572,12 @@ system. See the corresponding Defaults to 'https' +#### [`PAPERLESS_DISABLE_REGULAR_LOGIN=`](#PAPERLESS_DISABLE_REGULAR_LOGIN) {#PAPERLESS_DISABLE_REGULAR_LOGIN} + +: Disables the regular frontend username / password login, i.e. once you have setup SSO. Note that the Django admin login cannot be disabled. + + Defaults to False + ## OCR settings {#ocr} Paperless uses [OCRmyPDF](https://ocrmypdf.readthedocs.io/en/latest/) diff --git a/src/documents/context_processors.py b/src/documents/context_processors.py index 90c856aeb..b58c77268 100644 --- a/src/documents/context_processors.py +++ b/src/documents/context_processors.py @@ -5,4 +5,5 @@ def settings(request): return { "EMAIL_ENABLED": django_settings.EMAIL_HOST != "localhost" or django_settings.EMAIL_HOST_USER != "", + "DISABLE_REGULAR_LOGIN": django_settings.DISABLE_REGULAR_LOGIN, } diff --git a/src/documents/templates/account/login.html b/src/documents/templates/account/login.html index 777f65409..0dd8d8e1b 100644 --- a/src/documents/templates/account/login.html +++ b/src/documents/templates/account/login.html @@ -58,29 +58,33 @@ {% translate "Share link has expired." %} {% endif %} - {% translate "Username" as i18n_username %} - {% translate "Password" as i18n_password %} -
- - -
-
- - -
-
- -
- {% if EMAIL_ENABLED %} -
- {% translate "Forgot your password?" %} -
+ {% if not DISABLE_REGULAR_LOGIN %} + {% translate "Username" as i18n_username %} + {% translate "Password" as i18n_password %} +
+ + +
+
+ + +
+
+ +
+ {% if EMAIL_ENABLED %} +
+ {% translate "Forgot your password?" %} +
+ {% endif %} {% endif %} {% load allauth socialaccount %} {% get_providers as socialaccount_providers %} {% if socialaccount_providers %} -

{% translate "or sign in via" %}

+ {% if not DISABLE_REGULAR_LOGIN %} +

{% translate "or sign in via" %}

+ {% endif %}