You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
875 B
23 lines
875 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Wifi-configuration</title>
|
|
</head>
|
|
<body>
|
|
<form action="/init" method="POST">
|
|
<fieldset>
|
|
<legend>Basic wifi-setup</legend>
|
|
<label for="ssid">SSID:</label><br>
|
|
<input type="text" id="ssid" name="ssid" placeholder="SSID" required><br>
|
|
<label for="pwd">Password:</label><br>
|
|
<input type="password" id="pwd" name="pwd" autocomplete="off" required><br>
|
|
<label for="hostname">Tonuino-name (hostname):</label><br>
|
|
<input type="text" id="hostname" name="hostname" required><br><br>
|
|
<input type="submit" value="Submit">
|
|
</fieldset>
|
|
</form>
|
|
<form action="/restart">
|
|
<button type="submit">Reboot</button>
|
|
</form>
|
|
</body>
|
|
</html>
|