Add unambiguous section in the PGN + some fixes + code formatting and fix typos
[vchess.git] / client / src / data / userCheck.js
index 745d6d6..d6fa7c1 100644 (file)
@@ -1,12 +1,13 @@
 export function checkNameEmail(o) {
   if (typeof o.name === "string") {
-    if (o.name.length == 0) return "Empty name";
-    if (!o.name.match(/^[\w]+$/)) return "Bad characters in name";
+    if (o.name.length == 0) return "Missing name";
+    if (!o.name.match(/^[\w-]+$/))
+      return "Name: alphanumerics, hyphen and underscore";
   }
 
   if (typeof o.email === "string") {
-    if (o.email.length == 0) return "Empty email";
-    if (!o.email.match(/^[\w.+-]+@[\w.+-]+$/)) return "Bad characters in email";
+    if (o.email.length == 0) return "Missing email";
+    if (!o.email.match(/^[\w.+-]+@[\w.+-]+$/)) return "Invalid email";
   }
 
   return "";