Tidy a bit the files structure.
[Project_webapp.git] / formlogin.php
diff --git a/formlogin.php b/formlogin.php
deleted file mode 100644 (file)
index f3b8765..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-<?php
-$form_email = filter_input(INPUT_POST, "email", FILTER_VALIDATE_EMAIL);
-$form_password = filter_input(INPUT_POST, "password", FILTER_SANITIZE_STRING);
-
-if (!$form_email) {
-    echo "The email is not valid";
-} else {
-    $sql_pquery = "select count() from Client where EmailCI = ?";
-}
-
-?>