22 lines
736 B
HTML
22 lines
736 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>CircuitPython</title>
|
||
|
<meta charset="UTF-8">
|
||
|
</head>
|
||
|
<script src="/welcome.js" defer=true></script>
|
||
|
<body>
|
||
|
<h1>Welcome!</h1>
|
||
|
Welcome to CircuitPython's Web API. Through your browser you can <a href="/fs/">work with files</a>. Make sure you've set <code>CIRCUITPY_WEB_API_PASSWORD</code> in <code>/.env</code> and provide it when the browser prompts for it. Leave the username blank.
|
||
|
<h2>Device Info</h2>
|
||
|
Board: <a id="board"></a><br>
|
||
|
Version: <span id="version"></span><br>
|
||
|
Hostname: <a id="hostname"></a><br>
|
||
|
IP: <a id="ip"></a>
|
||
|
<h2>Other Devices</h2>
|
||
|
Here are other CircuitPython devices on your network:
|
||
|
<ul id="devices">
|
||
|
</ul>
|
||
|
</body>
|
||
|
</html>
|