diff --git a/src/components/settings/Security.vue b/src/components/settings/Security.vue index a72b0727..87bb745a 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 bd119747..ab73ce35 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 293409a0..7f9598bf 100644 --- a/src/layouts/Layout.vue +++ b/src/layouts/Layout.vue @@ -38,14 +38,19 @@