blob: 8db6ad2dd254edb80ae6c29bc3b0ff89fbba806e [file] [log] [blame]
Rushabh Mehtadc8067e2016-06-29 18:38:32 +05301{% extends "templates/web.html" %}
2
3{% block script %}
Rushabh Mehta5f5f0be2016-06-30 17:02:37 +05304<script>
5$(document).ready(function() {
6 $("#login_btn").click(function() {
7 var me = this;
8 $(this).html("Logging In...").prop("disabled", true);
9 frappe.call({
10 "method": "login",
11 args: {
12 usr: "demo@erpnext.com",
13 pwd: "demo",
14 lead_email: $("#lead-email").val(),
15 },
16 callback: function(r) {
17 $(me).prop("disabled", false);
18 if(r.exc) {
19 alert("Error, please contact support@erpnext.com");
20 } else {
21 console.log("Logged In");
22 window.location.href = "desk";
23 }
24 }
25 })
26 return false;
27 })
28 .prop("disabled", false);
29})
30
31</script>
Rushabh Mehtadc8067e2016-06-29 18:38:32 +053032{% endblock %}
33
34{% block style %}
35<style>
36 footer, .navbar {
37 display: none;
38 }
39 .page-content {
40 right: 0%;
41 width: 100%;
42 }
43</style>
44{% endblock %}
45
46{% block title %}
47{{ _("Login") }}
48{% endblock %}
49
50{% block page_content %}
51
52<!-- no-header -->
53<div class="page-hero text-center">
Rushabh Mehtaea5ad842016-08-02 21:25:45 +053054 <img src="/assets/erpnext/images/erp-icon.svg" style="max-width: 100px; max-height: 100px;">
Rushabh Mehtadc8067e2016-06-29 18:38:32 +053055 <h1>ERPNext Demo</h1>
56 <p style="margin-top: 60px;">
57 <input id="lead-email" type="email"
58 class="form-control" placeholder="Your Email Id (optional)"
59 style="width: 75%; max-width: 400px; margin: auto;">
60 </p>
61
62 <button type="submit" id="login_btn" class="btn btn-default">Launch Demo</button>
63
64 <hr style="margin: 60px 0px;">
65 <p class="text-muted small">Some functionality is disabled for the demo app. The demo data will be cleared regulary.
66 <br class="hidden-xs">
67 To start your free ERPNext account, <a href="https://erpnext.com/signup?plan=Free-Solo">click here</a></p>
68</div>
69
70{% endblock %}