From 8e567b90a5f227556f46c62cf7b55251b57e2518 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20F=2E=20Romaniello?= Date: Fri, 7 Feb 2014 11:11:14 -0200 Subject: [PATCH] fix #3 --- example/public/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example/public/index.html b/example/public/index.html index 8050bb0..e116bec 100644 --- a/example/public/index.html +++ b/example/public/index.html @@ -46,8 +46,8 @@ $('#login').submit(function (e) { e.preventDefault(); - var username = $('username').val(); - var password = $('password').val(); + var username = $('#username').val(); + var password = $('#password').val(); $.ajax({ type: 'POST', data: { @@ -62,4 +62,4 @@ }); - \ No newline at end of file +