2026-02-18 13:17:22 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2026-03-29 17:17:47 +01:00
|
|
|
<h1 class="title is-large butter-title">{{ _("Share access to")}} {{get_setting('butterbox_name')}}.</h1>
|
2026-02-18 13:17:22 +00:00
|
|
|
|
2026-02-19 16:42:57 +00:00
|
|
|
<div class="block butter-centered">
|
2026-02-18 13:17:22 +00:00
|
|
|
|
|
|
|
|
{% if display_wifi_password %}
|
2026-03-29 17:17:47 +01:00
|
|
|
<p>{{ _("Connect to WiFi name:")}} "{{ get_setting('ssid') }}" {{ _("with password:")}} "{{ get_setting('wifi_password') }}".</p>
|
2026-02-18 13:17:22 +00:00
|
|
|
{% else %}
|
2026-03-29 17:17:47 +01:00
|
|
|
<p>{{ _("Your WiFi name is")}} "{{ get_setting('ssid') }}". {{ _("You will be able to join without a password.")}}</p>
|
2026-02-18 13:17:22 +00:00
|
|
|
{% endif %}
|
2026-03-29 17:17:47 +01:00
|
|
|
<p>{{ _("You can also use the following QR code to join:")}}</p>
|
2026-02-19 16:42:57 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="block butter-centered">
|
|
|
|
|
<img class="image is-256x256" style="margin: 0 auto" src="{{ url_for('static', filename='images/wifi_qr_code.png') }}">
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-02-18 13:17:22 +00:00
|
|
|
{% endblock %}
|