File: index.html

package info (click to toggle)
golang-nhooyr-websocket 1.8.12-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 528 kB
  • sloc: asm: 158; sh: 101; javascript: 62; makefile: 6
file content (25 lines) | stat: -rw-r--r-- 852 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!doctype html>
<html lang="en-CA">
  <head>
    <meta charset="UTF-8" />
    <title>github.com/coder/websocket - Chat Example</title>
    <meta name="viewport" content="width=device-width" />

    <link href="https://unpkg.com/sanitize.css" rel="stylesheet" />
    <link href="https://unpkg.com/sanitize.css/typography.css" rel="stylesheet" />
    <link href="https://unpkg.com/sanitize.css/forms.css" rel="stylesheet" />
    <link href="/index.css" rel="stylesheet" />
  </head>
  <body>
    <div id="root">
      <div id="message-log"></div>
      <div id="publish-form-container">
        <form id="publish-form">
          <input name="message" id="message-input" type="text" />
          <input value="Submit" type="submit" />
        </form>
      </div>
    </div>
    <script type="text/javascript" src="/index.js"></script>
  </body>
</html>