mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2025-02-20 22:00:44 +01:00
- Start an Acces Point if no wlan is configured. - Start a small flask webserver to configure the wifi.
21 lines
607 B
HTML
21 lines
607 B
HTML
{% extends 'layout.html' %}
|
|
|
|
{% block body %}
|
|
<div id="mainContent">
|
|
<h1>WiFi Setup</h1>
|
|
<div class="wifiIcon"></div>
|
|
|
|
<form action="{{ url_for('save_credentials') }}" method=post>
|
|
<ul>
|
|
<li><label for="ssid">Enter your network SSID:</label></li>
|
|
<li><input type="text" name="ssid", class="wifiNetworkInputs"></li>
|
|
|
|
<li><label for="wifi_key">Your Wifi password</label></li>
|
|
<li><input type="password" name="wifi_key", class="wifiNetworkInputs"></li>
|
|
|
|
<input type="submit", class="wifiConnectButton">
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|