From: Nick Downing Date: Thu, 13 Jan 2022 03:29:09 +0000 (+1100) Subject: Fix minor booboo in account creation form submission X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?p=ndcode_site.git;a=commitdiff_plain;h=414b835736cf300bf834e4ab2d00a9e553b0b21c Fix minor booboo in account creation form submission --- 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