16 lines
590 B
HTML
16 lines
590 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% import "bulma_wtf.html" as wtf %}
|
|
|
|
<div class="block"><h1 class="title is-large">{{ _("Set up your box")}}</h1></div>
|
|
|
|
<div class="block">
|
|
<p class="grey">{{ _("Version")}} 1.0.1</p>
|
|
</div>
|
|
<div class="block">
|
|
<p class="subtitle">{{ _("You have full control over the services on this box and its security. Continue to Admin Settings to personalize your setup.")}}</p>
|
|
<button class="button butter-centered"><a href={{ url_for("admin_setup") }}> {{ _("Continue")}}</a></button>
|
|
</div>
|
|
{% endblock %}
|
|
|