blob: 509057b9ef91cad10c7194348b574a00b2aeb27d [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) {
Anand Doshi3bed5ab2013-11-05 20:05:52 +053017 alert("Error, please contact support@erpnext.com");
Rushabh Mehtaacd33672013-08-26 16:17:50 +053018 } else {
Anand Doshi3bed5ab2013-11-05 20:05:52 +053019 console.log("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})