Skip to content
Snippets Groups Projects
Commit 0e5dacbb authored by Lathifah Nurrahmah's avatar Lathifah Nurrahmah
Browse files

updated signin

parent baff6090
Branches
No related merge requests found
...@@ -48,7 +48,6 @@ public class SignIn extends HttpServlet { ...@@ -48,7 +48,6 @@ public class SignIn extends HttpServlet {
response.setContentType("text/html;charset=UTF-8"); response.setContentType("text/html;charset=UTF-8");
try (PrintWriter out = response.getWriter()) { try (PrintWriter out = response.getWriter()) {
String username = request.getParameter("username"); String username = request.getParameter("username");
String email = request.getParameter("email");
String password = request.getParameter("password"); String password = request.getParameter("password");
try { try {
...@@ -119,9 +118,8 @@ public class SignIn extends HttpServlet { ...@@ -119,9 +118,8 @@ public class SignIn extends HttpServlet {
json.put("id",0); json.put("id",0);
json.put("fullname",""); json.put("fullname","");
json.put("username",""); json.put("username","");
json.put("address",""); json.put("email","");
json.put("postalcode",""); json.put("phone_no","");
json.put("phonenumber","");
} }
} }
/* Get every data returned by SQL query */ /* Get every data returned by SQL query */
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment