From a0da799c9e09a9d0a82673019b0494b5ca37c275 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Sat, 4 Oct 2025 18:03:28 -0600 Subject: [PATCH] Tuning the host app. --- frontend/src/host/HostApp.vue | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/frontend/src/host/HostApp.vue b/frontend/src/host/HostApp.vue index 7880983..d2f4051 100644 --- a/frontend/src/host/HostApp.vue +++ b/frontend/src/host/HostApp.vue @@ -6,10 +6,6 @@

{{ headingTitle }}

{{ subheading }}

-

- Manage your full profile on - {{ authSiteHost }} (you may need to login again). -

@@ -34,13 +30,20 @@
+
-

Signed in on {{ currentHost }}.

+

Logout from {{ currentHost }}, or access your Full Profile at {{ authSiteHost }} (you may need to sign in again).

@@ -80,7 +83,7 @@ const headingTitle = computed(() => { const subheading = computed(() => { const service = authStore.settings?.rp_name || 'this service' - return `You\u2019re signed in via ${service} on ${currentHost}.` + return `You're signed in to ${currentHost}.` }) const authSiteHost = computed(() => authStore.settings?.auth_host || '') @@ -99,6 +102,10 @@ const goToAuthSite = () => { window.location.href = authSiteUrl.value } +const goBack = () => { + window.history.back() +} + const logout = async () => { await authStore.logout() }