1
0
Fork 0
firefox/testing/xpcshell/node-ws/examples/express-session-parse/public/index.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

24 lines
721 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Express session demo</title>
</head>
<body>
<h1>Choose an action.</h1>
<button id="login" type="button" title="Simulate login">
Simulate login
</button>
<button id="logout" type="button" title="Simulate logout">
Simulate logout
</button>
<button id="wsButton" type="button" title="Open WebSocket connection">
Open WebSocket connection
</button>
<button id="wsSendButton" type="button" title="Send WebSocket message">
Send WebSocket message
</button>
<pre id="messages" style="height: 400px; overflow: scroll"></pre>
<script src="app.js"></script>
</body>
</html>