Minor fixes

This commit is contained in:
Ana Custura 2026-03-30 11:22:30 +01:00
parent 699d28da17
commit 441031a4ac
4 changed files with 16 additions and 14 deletions

View file

@ -34,10 +34,11 @@
<a href="{{ url_for('admin') }}" class="navbar-item"> <span class="icon">
<i class="fa fa-user" aria-hidden="true"></i>
</span>{{ _("Admin Settings") }}</a>
<a href="{{ url_for('share') }}" class="navbar-item"> <span class="icon">
<i class="fa fa-share" aria-hidden="true"></i>
</span>{{ _("Share Access") }}</a>
{% if get_setting('enable_wifi_sharing') == 'true' %}
<a href="{{ url_for('share') }}" class="navbar-item"> <span class="icon">
<i class="fa fa-share" aria-hidden="true"></i>
</span>{{ _("Share Access") }}</a>
{% endif %}
</div>
<div class="navbar-end">
{% block navbar_logout %}{% endblock %}

View file

@ -1,10 +1,10 @@
{% extends "base.html" %}
{% block content %}
<div class="block"><h1 class="title is-large">{{ _("Changes have been applied ") }}.</h1></div>
<div class="block"><h1 class="title is-large">{{ _("Changes have been applied") }}.</h1></div>
<div class="block">
<p class="subtitle"> {{ _("Continue to your box portal. The portal is the view others will see when they connect to the box hotspot.") }}</p>
<p class="subtitle"> {{ _("The box will now reboot to apply settings. This can take up to one minute.") }}</p>
<button class="button butter-centered"><a href={{ url_for("index") }}> {{ _("Continue to Portal")}}</a></button>
</div>