join: migrate registration form to Forgejo backend

This commit is contained in:
forgejo-actions[bot] 2025-04-03 22:34:10 +00:00
parent b1328e7227
commit 0fb2d046e4
6 changed files with 22 additions and 22 deletions

View file

@ -116,22 +116,22 @@
var email = document.getElementById("email").value;
if(!agreetoterms) {
alert("Registration requires agreement of Code of Conduct");
alert("Registration requires agreement of Code of Conduct.");
return false;
}
if(!email) {
alert("Email cannot be empty");
alert("Email cannot be empty.");
return false;
}
if(mathspamtrap != "9") {
alert("Wrong math answer");
alert("Wrong math answer.");
return false;
}
if(await checkDuplicate(email) === true) {
alert("This email address has already requested an account");
alert("This email address has already requested an account.");
return false;
}
@ -157,7 +157,7 @@
.then(response => response.json())
.then(result => {
console.log('Success:', result);
alert("Request submitted. A working group member will process your registration shortly. If you receive no contact within seven days of registration, please send an email to support@ilot.io");
alert("Request submitted. A working group member will process your registration shortly. If you receive no contact within seven days of registration, please send an email to support@ilot.io.");
})
.catch(error => {
console.error('Error:', error)