mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
19 lines
642 B
HTML
19 lines
642 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>WebUI - Custom Web-Server Example (C)</title>
|
|
<!-- Connect this window to the back-end app -->
|
|
<script src="http://localhost:8081/webui.js"></script>
|
|
</head>
|
|
<body>
|
|
<h3>Custom Web-Server Example (C)</h3>
|
|
<p>
|
|
This HTML page is handled by a custom Web-Server other than WebUI.<br />
|
|
This window is connected to the back-end because we used: <pre>http://localhost:8081/webui.js</pre>
|
|
</p>
|
|
<h4><a href="second.html">Simple link example (Local file)</a></h4>
|
|
<button onclick="my_backend_func(123, 456, 789);">Call my_backend_func()</button>
|
|
</body>
|
|
</html>
|