File: index.html

package info (click to toggle)
python-falcon 4.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,172 kB
  • sloc: python: 33,608; javascript: 92; sh: 50; makefile: 50
file content (35 lines) | stat: -rw-r--r-- 691 bytes parent folder | download | duplicates (3)
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
26
27
28
29
30
31
32
33
34
35
<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Falcon E2E Tests</title>
  <link rel="stylesheet" href="style.css">
</head>

<body>
  <div class="header">WebSockets and SSE</div>

  <div class="column">
    <div class="terminal">
      <h3>Terminal 1</h3>
      <input type="text" disabled id="input1">
      <button id="button1">Connect (WS1)</button>
     </div>
  </div>

  <div class="column">
    <div class="terminal">
      <h3>Terminal 2</h3>
      <input type="text" disabled id="input2">
      <button id="button2">Connect (WS2)</button>
    </div>
  </div>

  <div class="log" id="messages">
  </div>

  <script src="main.js"></script>
</body>

</html>