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

21 lines
761 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-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-19 10:45:55 +02:00
{% include "steps/config.html" %}
{%for file in steps %}
2018-10-18 16:23:25 +02:00
{% include "steps/" + flavor + "/" + file %}
{% endfor %}
2018-11-27 15:11:46 +02:00
{% include "steps/database.html" %}
<input class="btn btn-primary" type="submit" value="Setup Mailu">
</form>
{% endblock %}