blob: f9934a33f32d44f40b96ab7ff1a80709c38fa9cd [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",
Zlash65d1fbaf82018-10-10 14:25:53 +053013 pwd: "Demo1234567!!!",
Rushabh Mehta5f5f0be2016-06-30 17:02:37 +053014 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 }
Rushabh Mehta2df16b12019-05-04 11:09:19 +053043 {% include "templates/styles/card_style.css" %}
44 header, footer {
45 display: none;
46 }
47 html, body {
48 background-color: #f5f7fa;
49 }
Rushabh Mehtadc8067e2016-06-29 18:38:32 +053050</style>
51{% endblock %}
52
53{% block title %}
Rushabh Mehta93656412017-04-06 18:24:34 +053054{{ _("ERPNext Demo") }}
Rushabh Mehtadc8067e2016-06-29 18:38:32 +053055{% endblock %}
56
57{% block page_content %}
Rushabh Mehtad40e6612017-01-10 14:46:45 +053058<div class='page-card'>
Rushabh Mehtadc8067e2016-06-29 18:38:32 +053059
Rushabh Mehtad40e6612017-01-10 14:46:45 +053060 <div class='page-card-head'>
61 <span class='indicator blue'>
62 {{ _("ERPNext Demo") }}</span>
63 </div>
64 <!-- <img src="/assets/erpnext/images/erp-icon.svg" style="max-width: 40px; max-height: 40px;"> -->
John Clarke8cb92e02019-06-05 10:49:47 -060065 <p>Some functionality is disabled for the demo and the data will be cleared regularly.</p>
Rushabh Mehtad40e6612017-01-10 14:46:45 +053066 <div><button type="submit" id="login_btn" class="btn btn-primary btn-sm">Launch Demo</button></div>
Rushabh Mehtadc8067e2016-06-29 18:38:32 +053067</div>
68
Rushabh Mehtad40e6612017-01-10 14:46:45 +053069
scmmishraa55d3222019-04-19 12:22:30 +053070<p class='text-muted text-center small' style='margin-top: -20px;'><a href="https://erpnext.com/pricing">Start a free 14-day trial </a>
Rushabh Mehtad40e6612017-01-10 14:46:45 +053071</p>
72<style>
73html, body {
74 background-color: #f5f7fa;
75}
76</style>
Rushabh Mehtadc8067e2016-06-29 18:38:32 +053077{% endblock %}