From 8844ccb842f33b7a49b8f64c9663156ce3b93f61 Mon Sep 17 00:00:00 2001 From: void-57 Date: Sat, 25 Oct 2025 14:19:03 +0530 Subject: [PATCH] Update minimum and step values for send amount input with custom validation --- index.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index b0b7aec..9ada3fa 100644 --- a/index.html +++ b/index.html @@ -266,8 +266,10 @@ id="sendAmount" class="form-input" placeholder="Enter the amount to send" - min="0.0001" - step="0.000001" + min="0.000000001" + step="0.0000000001" + oninvalid="this.setCustomValidity('Value must be greater than or equal to 0.000000001')" + oninput="this.setCustomValidity('')" required />