index.html 517 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Select a Chat Room</title>
  6. <link rel="stylesheet" href="/static/css/styles.css" />
  7. </head>
  8. <body class="index-body">
  9. <h1>Join a Chat Room</h1>
  10. <form action="/chat" method="get">
  11. <input type="text" name="room" placeholder="Enter channel name..." required />
  12. <button type="submit">Join</button>
  13. </form>
  14. <!-- Optional: index.js if you want any client JS here -->
  15. <script src="/static/js/index.js"></script>
  16. </body>
  17. </html>