mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
14 lines
337 B
HTML
14 lines
337 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>WebUI - Custom Web-Server second page (C)</title>
|
|
<!-- Connect this window to the back-end app -->
|
|
<script src="http://localhost:8081/webui.js"></script>
|
|
</head>
|
|
<body>
|
|
<h3>This is the second page !</h3>
|
|
<h4><a href="index.html">Back</a></h4>
|
|
</body>
|
|
</html>
|