You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.4 KiB
29 lines
1.4 KiB
{% extends "ordr2:templates/layout.jinja2" %} |
|
|
|
{% block title %} Ordr | Welcome {% endblock title %} |
|
|
|
{% block content %} |
|
<div class="jumbotron"> |
|
<h1>Welcome to <span class="brand">ordr</span>!</h1> |
|
<p class="lead">An order management system to simplify your shopping for laboratory supplies.</p> |
|
<p> |
|
<strong>What can order do for you?</strong> It will simplify the process of ordering laboratory supplies by using the power of the newest web technologies. Interested? Just follow the three steps below! |
|
</p> |
|
</div> |
|
|
|
<div class="row"> |
|
<div class="col-4"> |
|
<h2>1. Register</h2> |
|
<p>Registration is easy as 1-2-3. Just fill out the form on <?php echo anchor('account/register', 'this page');?> and as soon as an admin has activated your account the shopping can begin!</p> |
|
</div> |
|
<div class="col-4"> |
|
<h2>2. Place an Order</h2> |
|
<p>A lot of the chemicals, supllies and so forth are already stored in the database, so you don't have to fill out the order form your self!</p> |
|
</div> |
|
<div class="col-4"> |
|
<h2>3. Get notified</h2> |
|
<p>As soons as your purchase has arrived you will automatically get notified. Or you can use the orders overview to check what the working status is.</p> |
|
</div> |
|
</div> |
|
{{ macros.center_column_hack() }} |
|
{% endblock content %}
|
|
|