Update SOGoRootPage.wox

Ensure the TOTP input field only accept number, so it is quicker to type on mobile devices.
Disable history of the TOTP input, which is not necessary.

See https://bugs.sogo.nu//view.php?id=5524
This commit is contained in:
André Rodier
2025-03-04 12:58:12 +00:00
committed by QHivert
parent 69116d8eb7
commit b48704e7ff
+1 -1
View File
@@ -163,7 +163,7 @@
<md-input-container class="md-block">
<label><var:string label:value="Verification Code"/></label>
<md-icon>lock</md-icon>
<input type="text"
<input type="number" autocomplete="off"
ng-pattern="app.verificationCodePattern"
ng-model="app.creds.verificationCode"
ng-required="app.loginState == 'totpcode'"