blob: 03fe6b96b910f6312e66703b388faf2101523306 [file] [log] [blame]
Rushabh Mehtaacd33672013-08-26 16:17:50 +05301$(document).ready(function() {
2 $(".navbar, footer, .banner, #user-tools").toggle(false);
3
4 $("#login_btn").click(function() {
5 var me = this;
Anand Doshic8e39b02013-08-30 18:22:58 +05306 $(this).html("Logging In...").prop("disabled", true);
Rushabh Mehtaacd33672013-08-26 16:17:50 +05307 wn.call({
8 "method": "login",
9 args: {
10 usr: "demo@erpnext.com",
11 pwd: "demo",
12 lead_email: $("#lead-email").val(),
13 },
14 callback: function(r) {
Anand Doshic8e39b02013-08-30 18:22:58 +053015 $(me).prop("disabled", false);
Rushabh Mehtaacd33672013-08-26 16:17:50 +053016 if(r.exc) {
Bárbara Perretti91d9ddd2013-10-08 15:45:58 -030017 alert(wn._("Error, please contact support@erpnext.com"));
Rushabh Mehtaacd33672013-08-26 16:17:50 +053018 } else {
Bárbara Perretti91d9ddd2013-10-08 15:45:58 -030019 console.log(wn._("Logged In"));
Rushabh Mehtaacd33672013-08-26 16:17:50 +053020 window.location.href = "app.html";
21 }
22 }
23 })
24 return false;
25 })
Anand Doshic8e39b02013-08-30 18:22:58 +053026 .prop("disabled", false);
Rushabh Mehtaacd33672013-08-26 16:17:50 +053027})