From 414b835736cf300bf834e4ab2d00a9e553b0b21c Mon Sep 17 00:00:00 2001 From: Nick Downing Date: Thu, 13 Jan 2022 14:29:09 +1100 Subject: [PATCH] Fix minor booboo in account creation form submission --- my_account/sign_up/index.html.jst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/my_account/sign_up/index.html.jst b/my_account/sign_up/index.html.jst index 6be661d..abe98d4 100644 --- a/my_account/sign_up/index.html.jst +++ b/my_account/sign_up/index.html.jst @@ -106,12 +106,12 @@ return async env => { document.getElementById('family-name').reportValidity() && document.getElementById('email').reportValidity() && document.getElementById('password').reportValidity() && - document.getElementById('verification').reportValidity() + document.getElementById('verification-code').reportValidity() ) { try { await sign_up( document.getElementById('email').value, - document.getElementById('verification').value + document.getElementById('verification-code').value document.getElementById('given-names').value, document.getElementById('family-name').value, document.getElementById('password').value -- 2.34.1