diff --git a/frontend/src/routes/login/[token]/+page.svelte b/frontend/src/routes/login/[token]/+page.svelte index c501661..c531bb8 100644 --- a/frontend/src/routes/login/[token]/+page.svelte +++ b/frontend/src/routes/login/[token]/+page.svelte @@ -33,11 +33,19 @@ -

One Time Access

+

+ {data.token === 'setup' ? `${$appConfigStore.appName} Setup` : 'One Time Access'} +

- You've been granted one-time access to your {$appConfigStore.appName} account. Please note that if - you continue, this link will become invalid. To avoid this, make sure to add a passkey. Otherwise, - you'll need to request a new link. + {#if data.token === 'setup'} + You're about to sign in to the initial admin account. Anyone with this link can access the + account until a passkey is added. Please set up a passkey as soon as possible to prevent + unauthorized access. + {:else} + You've been granted one-time access to your {$appConfigStore.appName} account. Please note that + if you continue, this link will become invalid. To avoid this, make sure to add a passkey. Otherwise, + you'll need to request a new link. + {/if}