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() }