index.html (721B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 <title>Express session demo</title> 6 </head> 7 <body> 8 <h1>Choose an action.</h1> 9 <button id="login" type="button" title="Simulate login"> 10 Simulate login 11 </button> 12 <button id="logout" type="button" title="Simulate logout"> 13 Simulate logout 14 </button> 15 <button id="wsButton" type="button" title="Open WebSocket connection"> 16 Open WebSocket connection 17 </button> 18 <button id="wsSendButton" type="button" title="Send WebSocket message"> 19 Send WebSocket message 20 </button> 21 <pre id="messages" style="height: 400px; overflow: scroll"></pre> 22 <script src="app.js"></script> 23 </body> 24 </html>