From 0b70506f94fcb2e06cb65ce0d6a28b9b84c695f3 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 11 Mar 2024 16:00:55 +0100 Subject: [PATCH] Compatibility with tyxml 4.6.x --- src/os_user_view.eliom | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/os_user_view.eliom b/src/os_user_view.eliom index db1ee832..c1f91a18 100644 --- a/src/os_user_view.eliom +++ b/src/os_user_view.eliom @@ -231,7 +231,7 @@ let%shared password_form ?(a_placeholder_pwd = "password") D.Form.input ~a: [ a_required () - ; a_autocomplete false + ; a_autocomplete `Off ; a_placeholder a_placeholder_pwd ] ~input_type:`Password ~name:pwdn D.Form.string in @@ -239,7 +239,7 @@ let%shared password_form ?(a_placeholder_pwd = "password") D.Form.input ~a: [ a_required () - ; a_autocomplete false + ; a_autocomplete `Off ; a_placeholder a_placeholder_confirmation ] ~input_type:`Password ~name:pwd2n D.Form.string in