From a1748467cfcef962b7b64eee2446af227e27c368 Mon Sep 17 00:00:00 2001 From: Philip Corliss Date: Thu, 13 Jun 2024 01:40:26 -0500 Subject: [PATCH] Prevent double clicking of the submit button on login (#3554) Signed-off-by: Philip Corliss --- web/static/main.css | 5 +++++ web/templates/password.html | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/web/static/main.css b/web/static/main.css index 7ab0316fdc..f5c61d7f39 100644 --- a/web/static/main.css +++ b/web/static/main.css @@ -32,6 +32,11 @@ body { outline: none; } +.dex-btn:disabled { + cursor: not-allowed; + opacity: 0.5; +} + .dex-btn-icon { background-position: center; background-repeat: no-repeat; diff --git a/web/templates/password.html b/web/templates/password.html index 8c77b26e98..3e1c2ed2da 100644 --- a/web/templates/password.html +++ b/web/templates/password.html @@ -32,4 +32,12 @@

Log in to Your Account

{{ end }} + + + {{ template "footer.html" . }}