44 lines
1.1 KiB
HTML
44 lines
1.1 KiB
HTML
{% extends "templates/web.html" %}
|
|
|
|
{% block script %}
|
|
<script>{% include "templates/includes/start.js" %}</script>
|
|
{% endblock %}
|
|
|
|
{% block style %}
|
|
<style>
|
|
footer, .navbar {
|
|
display: none;
|
|
}
|
|
.page-content {
|
|
right: 0%;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block title %}
|
|
{{ _("Login") }}
|
|
{% endblock %}
|
|
|
|
{% block page_content %}
|
|
|
|
<!-- no-header -->
|
|
<div class="page-hero text-center">
|
|
<img src="/assets/erpnext_demo/images/erp-icon-box.svg" style="max-width: 100px; max-height: 100px;">
|
|
<h1>ERPNext Demo</h1>
|
|
<p style="margin-top: 60px;">
|
|
<input id="lead-email" type="email"
|
|
class="form-control" placeholder="Your Email Id (optional)"
|
|
style="width: 75%; max-width: 400px; margin: auto;">
|
|
</p>
|
|
|
|
<button type="submit" id="login_btn" class="btn btn-default">Launch Demo</button>
|
|
|
|
<hr style="margin: 60px 0px;">
|
|
<p class="text-muted small">Some functionality is disabled for the demo app. The demo data will be cleared regulary.
|
|
<br class="hidden-xs">
|
|
To start your free ERPNext account, <a href="https://erpnext.com/signup?plan=Free-Solo">click here</a></p>
|
|
</div>
|
|
|
|
{% endblock %}
|