circuitpython/supervisor/shared/web_workflow/static/welcome.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.2 KiB
HTML
Raw Normal View History

2022-06-23 19:32:42 -04:00
<!DOCTYPE html>
<html>
<head>
<title>CircuitPython</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2022-06-29 19:31:55 -04:00
<script src="/welcome.js" defer=true></script>
<link rel="stylesheet" href="/style.css">
2022-06-23 19:32:42 -04:00
</head>
<body>
<h1><a href="/"><img src="/favicon.ico"/></a>&nbsp;Welcome!</h1>
<p>Welcome to CircuitPython's Web API. Go to the <a href="/fs/">file browser</a> to work with files in the CIRCUITPY drive. Go to the <a href="/cp/serial/">serial terminal</a> to see code output and interact with the REPL. Make sure you've set <code>CIRCUITPY_WEB_API_PASSWORD='somepassword'</code> in <code>/.env</code>. Provide the password when the browser prompts for it. <strong>Leave the username blank.</strong></p>
2022-06-23 19:32:42 -04:00
<h2>Device Info</h2>
<dl>
<dt>Board:</dt>
<dd><a id="board"></a></dd>
<dt>Version:</dt>
<dd><span id="version"></span></dd>
<dt>Hostname:</dt>
<dd><a id="hostname"></a></dd>
<dd>IP:</dd>
<dt><a id="ip"></a></dt>
<dd>Other Devices</dd>
</dl>
<h2>Here are other CircuitPython devices on your network:</h2>
2022-06-23 19:32:42 -04:00
<ul id="devices">
2022-07-28 11:18:52 -04:00
</ul>
2022-06-23 19:32:42 -04:00
</body>
</html>