blob: 23a9a2186f5a02e680d90cda0e42fe2d417b67a6 [file] [log] [blame]
Rushabh Mehtadc8067e2016-06-29 18:38:32 +05301{% extends "templates/web.html" %}
2
3{% block script %}
4 <script>{% include "templates/includes/start.js" %}</script>
5{% endblock %}
6
7{% block style %}
8<style>
9 footer, .navbar {
10 display: none;
11 }
12 .page-content {
13 right: 0%;
14 width: 100%;
15 }
16</style>
17{% endblock %}
18
19{% block title %}
20{{ _("Login") }}
21{% endblock %}
22
23{% block page_content %}
24
25<!-- no-header -->
26<div class="page-hero text-center">
27 <img src="/assets/erpnext_demo/images/erp-icon-box.svg" style="max-width: 100px; max-height: 100px;">
28 <h1>ERPNext Demo</h1>
29 <p style="margin-top: 60px;">
30 <input id="lead-email" type="email"
31 class="form-control" placeholder="Your Email Id (optional)"
32 style="width: 75%; max-width: 400px; margin: auto;">
33 </p>
34
35 <button type="submit" id="login_btn" class="btn btn-default">Launch Demo</button>
36
37 <hr style="margin: 60px 0px;">
38 <p class="text-muted small">Some functionality is disabled for the demo app. The demo data will be cleared regulary.
39 <br class="hidden-xs">
40 To start your free ERPNext account, <a href="https://erpnext.com/signup?plan=Free-Solo">click here</a></p>
41</div>
42
43{% endblock %}