1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-02-20 22:00:44 +01:00
Peter Steenbergen 34a89c5541 MycroftOS: Implementation of MycroftOS-WiFiSetup system.
- Start an Acces Point if no wlan is configured.
- Start a small flask webserver to configure the wifi.
2019-12-29 14:03:51 +01:00

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 %}