2026-02-18 13:17:22 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
<h1 class="title is-large butter-title">Share access to {{get_setting('butterbox_name')}}.</h1>
|
|
|
|
|
|
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-02-19 16:42:57 +00: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-02-19 16:42:57 +00: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-02-19 16:42:57 +00:00
|
|
|
<p>You can also use the following QR code to join:</p>
|
|
|
|
|
</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 %}
|