aboutsummaryrefslogtreecommitdiffstats
path: root/client.html
blob: 68c6c90443f521fc00295b8724b7c3423109c91f (plain)
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
<!DOCTYPE html>
<html>
    <head>
        <!-- usage demo -->
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <h5>Comments</h5>
        <form class="comment-form" action="javascript:handleCommentFormSubmit()">
            <span width="100%">
                <label for="username">Posting as:</label>
                <input id="username" type="text" value="anon"/>
            </span>
            <span>
                <textarea
                        maxlength="540"
                        id="commentcontent"
                        name="content"
                        value=""
                        rows="5"
                        cols="50"></textarea>
            </span>
            <label for="bot">Are you a bot? Type no if not.</label>
            <input id="bot" type="text" value=""/>
            <input id="submit" type="submit" value="Post"/>
        </form>

        <div id="commentsthread"></div>
        <script type="text/javascript" src="config.js"></script>
        <script type="text/javascript" src="client.js"></script>
    </body>
</html>