diff --git a/src/components/settings/Security.vue b/src/components/settings/Security.vue
index a72b07274..87bb745a1 100644
--- a/src/components/settings/Security.vue
+++ b/src/components/settings/Security.vue
@@ -321,6 +321,8 @@ export default {
// Set it to empty if done
this.saveSettings(() => {
this.password.currentPassword = "";
+ this.$root.username = null;
+ this.$root.socket.token = "autoLogin";
}, this.password.currentPassword);
},
diff --git a/src/languages/en.js b/src/languages/en.js
index bd119747b..ab73ce354 100644
--- a/src/languages/en.js
+++ b/src/languages/en.js
@@ -462,4 +462,6 @@ export default {
"Footer Text": "Footer Text",
"Show Powered By": "Show Powered By",
"Domain Names": "Domain Names",
+ signedInDisp: "Signed in as {0}",
+ signedInDispDisabled: "Auth Disabled.",
};
diff --git a/src/layouts/Layout.vue b/src/layouts/Layout.vue
index 293409a04..7f9598bfb 100644
--- a/src/layouts/Layout.vue
+++ b/src/layouts/Layout.vue
@@ -38,14 +38,19 @@