fix(ux): add inputmode and autocomplete attributes for mobile UX

- inputmode=decimal on budget amount input for correct decimal keyboard
- inputmode=numeric on rrule interval input for numeric keyboard
- autocomplete attributes on contacts form (name, tel, email, street-address)
This commit is contained in:
Ulas
2026-04-05 01:39:01 +02:00
parent 72515c5a69
commit 1dccba8d96
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -362,7 +362,7 @@ function openBudgetModal({ mode, entry = null }) {
<label class="form-label" for="bm-amount">${t('budget.amountLabel')}</label>
<input type="number" class="form-input" id="bm-amount"
placeholder="${t('budget.amountPlaceholder')}" step="0.01" min="0"
value="${absAmount}">
inputmode="decimal" value="${absAmount}">
</div>
<div class="form-group">