diff --git a/README.md b/README.md index cac9d67a..363afa10 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,11 @@ [SimpleLogin](https://simplelogin.io) | Privacy-First Email Forwarding and Identity Provider Service ---

- + - + diff --git a/app/auth/templates/auth/login.html b/app/auth/templates/auth/login.html index 6f60139d..79f2ba8c 100644 --- a/app/auth/templates/auth/login.html +++ b/app/auth/templates/auth/login.html @@ -49,8 +49,10 @@ Don't have an account yet? Sign up + {% if GITHUB_CLIENT_ID or GOOGLE_CLIENT_ID or FACEBOOK_CLIENT_ID %}

Social Login is now deprecated
+ {% endif %} {% endblock %} \ No newline at end of file diff --git a/app/auth/templates/auth/social.html b/app/auth/templates/auth/social.html index c5ca016e..1218a1ac 100644 --- a/app/auth/templates/auth/social.html +++ b/app/auth/templates/auth/social.html @@ -12,20 +12,26 @@
Social login
+ {% if GITHUB_CLIENT_ID %} - Sign in with Github + Sign in with GitHub + {% endif %} + {% if GOOGLE_CLIENT_ID %} Sign in with Google + {% endif %} + {% if FACEBOOK_CLIENT_ID %} Sign in with Facebook + {% endif %}
Warning diff --git a/app/config.py b/app/config.py index ed541a2a..75499b25 100644 --- a/app/config.py +++ b/app/config.py @@ -253,6 +253,8 @@ if LOCAL_FILE_UPLOAD: LANDING_PAGE_URL = os.environ.get("LANDING_PAGE_URL") or "https://simplelogin.io" +STATUS_PAGE_URL = os.environ.get("STATUS_PAGE_URL") or "https://status.simplelogin.io" + # Loading PGP keys when mail_handler runs. To be used locally when init_app is not called. LOAD_PGP_EMAIL_HANDLER = "LOAD_PGP_EMAIL_HANDLER" in os.environ diff --git a/app/dashboard/templates/dashboard/api_key.html b/app/dashboard/templates/dashboard/api_key.html index 2309ee7c..53b891d2 100644 --- a/app/dashboard/templates/dashboard/api_key.html +++ b/app/dashboard/templates/dashboard/api_key.html @@ -22,11 +22,11 @@