48 lines
1.3 KiB
HTML
48 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Test Static Site</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Docker Watcher Static Sites</h1>
|
|
<p class="subtitle">This page is served from a Gitea repository folder</p>
|
|
|
|
<div class="cards">
|
|
<div class="card">
|
|
<h2>Server Time</h2>
|
|
<p id="server-time" class="value">Loading...</p>
|
|
<button onclick="fetchTime()">Refresh</button>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h2>Greeting</h2>
|
|
<div class="input-group">
|
|
<input type="text" id="name-input" placeholder="Enter your name" value="World">
|
|
<button onclick="fetchGreeting()">Say Hello</button>
|
|
</div>
|
|
<p id="greeting" class="value"></p>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h2>Echo</h2>
|
|
<div class="input-group">
|
|
<input type="text" id="echo-input" placeholder="Type something...">
|
|
<button onclick="fetchEcho()">Send</button>
|
|
</div>
|
|
<pre id="echo-result" class="value"></pre>
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>Mode: <strong>Deno</strong> (Static + API) · Powered by Docker Watcher</p>
|
|
</footer>
|
|
</div>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|