Spark Chao
Posts: 0
Joined: Sat Jan 17, 2015 6:25 am

check email format

Hello
When the user would like to sign up ,I hope they use email to account.
so I set some javascript to check what they input.

if ($.trim(Appery("create_username_input").val()) != "") {
if ($.trim(Appery("create_email_input").val()) != "") {
if ($.trim(Appery("create_password_input").val()) != "") {
if (!document.getElementsByName("create_email_input")[0].checkValidity || document.getElementsByName("create_email_input")[0].checkValidity()) {
signup.execute({});
} else {
alert("Please check the email format");
}
} else {
alert("Please enter password");
}
} else {
alert("Please enter email");
}
} else {
alert("Please enter name");
}

Unfortunately,the email check does not work,whatever content I filled in,it still run the signup service.
Please help me to figure out.Thanks!!

And how about the iOS app test and google analytic are ok right now?
Anything update??

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

check email format

Hello Spark,

Please follow this topic: http://stackoverflow.com/questions/46...

Return to “Issues”