2018-03-10 15:05:49 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2018-04-22 16:09:07 +02:00
|
|
|
{% block page %}
|
2018-03-10 15:05:49 +02:00
|
|
|
{% call macros.panel("warning", "Before starting, read the docs!") %}
|
|
|
|
Mailu is not perfectly documented, but still has a lot of documentation
|
|
|
|
available at <a href="https://mailu.io">mailu.io</a>. Make sure you read
|
|
|
|
the appropriate documentation for your setup and have all the requirements
|
|
|
|
ready when using this wizard.
|
|
|
|
{% endcall %}
|
|
|
|
|
2018-10-18 11:56:16 +02:00
|
|
|
<form method="post" action="{{ url_for(".submit_flavor") }}">
|
|
|
|
{% include "steps/flavor.html" %}
|
|
|
|
<input class="btn btn-primary" type="submit" value="Next >" style="margin-bottom: 15px">
|
|
|
|
</form>
|
|
|
|
{% if flavor %}
|
2018-04-22 11:53:18 +02:00
|
|
|
<form method="post" action="{{ url_for(".submit") }}">
|
2018-10-18 11:56:16 +02:00
|
|
|
<input type="hidden" name="flavor" value="{{ flavor }}">
|
|
|
|
{% include "steps/" + flavor + "/config.html" %}
|
|
|
|
{% include "steps/" + flavor + "/services.html" %}
|
|
|
|
{% include "steps/" + flavor + "/expose.html" %}
|
2018-03-10 15:05:49 +02:00
|
|
|
<input class="btn btn-primary" type="submit" value="Setup Mailu">
|
2018-10-18 11:56:16 +02:00
|
|
|
{% endif %}
|
|
|
|
<!-- {% include "steps/compose/optional.html" %} -->
|
2018-03-10 15:05:49 +02:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|