Skip to content

Commit d43f76c

Browse files
authored
fix: include link for eID App (#653)
* fix: update login instructions to include link for eID App * fix: add rel and aria-label attributes
1 parent b51f7b9 commit d43f76c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

platforms/pictique/src/routes/(auth)/auth/+page.svelte

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,12 @@
151151
{#if isMobileDevice()}
152152
Login with your <a href={getAppStoreLink()}><b><u>eID Wallet</u></b></a>
153153
{:else}
154-
Scan the QR code using your <b><u class="text-sm">eID App</u></b> to login
154+
Scan the QR code using your <a
155+
href={getAppStoreLink()}
156+
target="_blank"
157+
rel="noopener noreferrer"
158+
aria-label="eID App (opens in new tab)"><b><u class="text-sm">eID App</u></b></a
159+
> to login
155160
{/if}
156161
</h2>
157162
{#if errorMessage}
@@ -165,7 +170,7 @@
165170
<div class="flex flex-col items-center gap-4">
166171
<a
167172
href={getDeepLinkUrl(qrData)}
168-
class="rounded-xl bg-gradient-to-r from-[#4D44EF] via-[#F35B5B] to-[#F7A428] px-8 py-4 text-base font-semibold text-white transition-opacity hover:opacity-90"
173+
class="rounded-xl bg-linear-to-r from-[#4D44EF] via-[#F35B5B] to-[#F7A428] px-8 py-4 text-base font-semibold text-white transition-opacity hover:opacity-90"
169174
>
170175
Login with eID Wallet
171176
</a>

0 commit comments

Comments
 (0)