Our Personal Data Server from scratch!
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: enable autocomplete in totp verification

authored by

Alex van de Sandt and committed by
Tangled
(Jul 2, 2026, 8:29 PM +0300) 8ae9ce9c 6ec4484c

+1 -1
+1 -1
frontend/src/components/dashboard/TotpSection.svelte
··· 254 254 <div class="setup-step"> 255 255 <p>{$_('security.totpCodePlaceholder')}</p> 256 256 <form onsubmit={handleVerifyTotp}> 257 - <input type="text" bind:value={verifyCodeRaw} placeholder="000000" class="code-input" inputmode="numeric" disabled={verifyLoading} /> 257 + <input type="text" bind:value={verifyCodeRaw} placeholder="000000" class="code-input" inputmode="numeric" autocomplete="one-time-code" disabled={verifyLoading} /> 258 258 <div class="actions"> 259 259 <button type="button" class="secondary" onclick={() => totpSetup = goBackToQr(verifyData)}>{$_('common.back')}</button> 260 260 <button type="submit" disabled={verifyLoading || verifyCode.length !== 6}>{$_('security.verifyAndEnable')}</button>