30 lines
735 B
HTML
30 lines
735 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-TW">
|
|
|
|
<head>
|
|
<title>SD Server Control</title>
|
|
<link rel="stylesheet" href="index.css">
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="log-container">
|
|
<div id="log"></div>
|
|
</div>
|
|
|
|
<div id="control-panel">
|
|
<h2>Control Panel</h2>
|
|
<label for="port">Port:</label>
|
|
<input type="number" id="port" value="8080">
|
|
<button id="startBtn">啟動</button>
|
|
<button id="stopBtn">關閉</button>
|
|
<button id="jsonReload">重載Json</button>
|
|
<button id="devToolsBtn">DevTools</button>
|
|
<p id="status">Status: Waiting for actions...</p>
|
|
</div>
|
|
|
|
<script src="renderer.js"></script>
|
|
</body>
|
|
|
|
</html> |