1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-12 10:45:38 +02:00
Mailu/setup/templates/wizard.html

25 lines
927 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block page %}
{% 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 }}">
2018-10-18 16:23:25 +02:00
{%for file in flavor_files %}
{% include "steps/" + flavor + "/" + file %}
{% endfor %}
<input class="btn btn-primary" type="submit" value="Setup Mailu">
2018-10-18 11:56:16 +02:00
{% endif %}
</form>
{% endblock %}