login.html 614 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>pctochat</title>
  7. <link rel="stylesheet" href="styles.css">
  8. </head>
  9. <body>
  10. <div class="login container">
  11. <h1>join room</h1>
  12. <span id="join-info">other people can join</span>
  13. <form action="/" method="get">
  14. <input type="text" id="username" name="u" placeholder="your name" required>
  15. <button type="submit">join</button>
  16. </form>
  17. </div>
  18. <script src="js/room_info.js"></script>
  19. </body>
  20. </html>