Advertisement
Guest User

Untitled

a guest
Sep 29th, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     var collection = db.get('usercollection');
  2.     console.log(collection);
  3.  
  4.     var userData = collection.find({username: userName});
  5.     console.log(userData);
  6.     if (userData.password == password) {
  7.         console.log("authenticated!");
  8.     }
  9.     else {
  10.         console.log("Username or password is incorrect");
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement