48 lines
No EOL
1.6 KiB
HTML
48 lines
No EOL
1.6 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="">
|
|
<link href="/css/style.css" rel="stylesheet">
|
|
<title>₿TClock WiFi Settings</title>
|
|
</head>
|
|
|
|
<body>
|
|
<nav class="navbar navbar-light bg-light">
|
|
<div class="container-fluid">
|
|
<span class="navbar-brand mb-0 h1">₿TClock WiFi Settings</span>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="h-100 p-3 border bg-light">
|
|
<h1>WiFi Settings</h1>
|
|
<form name="customText" id="customTextForm" method="post" action="/setup/wifi">
|
|
<div class="row">
|
|
<label for="ssid" class="col-sm-4 col-form-label">SSID</label>
|
|
<div class="col-sm-8">
|
|
<input type="text" class="form-control" id="ssid" name="ssid" required>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<label for="password" class="col-sm-4 col-form-label">Password</label>
|
|
<div class="col-sm-8">
|
|
<input type="text" class="form-control" id="password" name="password" required>
|
|
</div>
|
|
</div>
|
|
<footer>
|
|
<button type="submit" class="btn btn-primary">Save and connect</button>
|
|
<p><small>The BTClock will restart and connect to your network. If it doesn't, reset to factory settings by holding the red button while booting to retry.</small></p>
|
|
</footer>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |