Skip to content

Commit ccd6063

Browse files
committed
Update welcome.html
Made html more semantic.
1 parent 2a0e4f7 commit ccd6063

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

supervisor/shared/web_workflow/static/welcome.html

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,26 @@
88
<link rel="stylesheet" href="/style.css">
99
</head>
1010
<body>
11+
1112
<h1><a href="/"><img src="/favicon.ico"/></a>&nbsp;Welcome!</h1>
12-
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. Leave the username blank.
13+
14+
<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>
15+
1316
<h2>Device Info</h2>
14-
Board: <a id="board"></a><br>
15-
Version: <span id="version"></span><br>
16-
Hostname: <a id="hostname"></a><br>
17-
IP: <a id="ip"></a>
18-
<h2>Other Devices</h2>
19-
Here are other CircuitPython devices on your network:
17+
18+
<dl>
19+
<dt>Board:</dt>
20+
<dd><a id="board"></a></dd>
21+
<dt>Version:</dt>
22+
<dd><span id="version"></span></dd>
23+
<dt>Hostname:</dt>
24+
<dd><a id="hostname"></a></dd>
25+
<dd>IP:</dd>
26+
<dt><a id="ip"></a></dt>
27+
<dd>Other Devices</dd>
28+
</dl>
29+
<h2>Here are other CircuitPython devices on your network:</h2>
2030
<ul id="devices">
21-
</ul>
31+
</ul>
2232
</body>
2333
</html>

0 commit comments

Comments
 (0)