Update: terms and conditions checkbox connected with db

This commit is contained in:
hyzen
2026-06-14 14:50:52 +05:30
parent 6ef1dd0c74
commit a111341163
2 changed files with 3 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@@ -342,6 +342,7 @@
state.username = username; state.username = username;
state.email = email; state.email = email;
state.password = password; state.password = password;
state.terms_agreed = true;
setLoading(signupSubmit, true); setLoading(signupSubmit, true);
@@ -430,6 +431,7 @@
email: state.email, email: state.email,
password: state.password, password: state.password,
otp: otp, otp: otp,
terms_agreed: state.terms_agreed,
}), }),
}) })
.then(function (r) { .then(function (r) {