File: index.html

package info (click to toggle)
qhttpengine 0.1.0%2Bdfsg1-1.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 524 kB
  • sloc: cpp: 2,070; javascript: 39; makefile: 21
file content (27 lines) | stat: -rw-r--r-- 762 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
26
27
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <title>QHttpEngine Chat</title>

        <link rel="stylesheet" href="css/style.css">
    </head>
    <body>
        <div class="footer">
            <textarea id="input" placeholder="Type here and press enter..."></textarea>
        </div>

        <div class="messages">
            <div class="message system">
                Greetings! Welcome to the QHttpEngine chat demo. Please type a message using the entry box below.
            </div>
        </div>

        <div class="spacer"></div>

        <script src="js/jquery.min.js"></script>
        <script src="js/chat.js"></script>
    </body>
</html>