From a5c7d13450f34c83446bc43fea9b54652925521b Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Sat, 23 Mar 2024 19:15:27 +0100 Subject: [PATCH] Change Password: inputs are now password inputs. --- src/App/Page/Setup.purs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App/Page/Setup.purs b/src/App/Page/Setup.purs index e575d65..b813005 100644 --- a/src/App/Page/Setup.purs +++ b/src/App/Page/Setup.purs @@ -97,11 +97,11 @@ render { modal, wsUp, newPasswordForm } = render_delete_account = Bulma.alert_btn "Delete my account" DeleteAccountPopup render_new_password_form = HH.form [ HE.onSubmit ChangePasswordAttempt ] - [ Bulma.box_input "passwordNEWPASS" "Password" "password" + [ Bulma.box_password "passwordNEWPASS" "New Password" "password" (HandleNewPassword <<< NEWPASS_INP_password) newPasswordForm.password should_be_disabled - , Bulma.box_input "confirmationNEWPASS" "Confirmation" "confirmation" + , Bulma.box_password "confirmationNEWPASS" "Confirmation" "confirmation" (HandleNewPassword <<< NEWPASS_INP_confirmation) newPasswordForm.confirmation should_be_disabled