summaryrefslogtreecommitdiffstats
path: root/cwd/assets/altcraft/ui/chat.rml
blob: 863445037ec3b614e45969c9df4417e012660e2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<rml>
    <head>
        <link type="text/rcss" href="mc-styles" />
        <link type="text/rcss" href="chat-styles" />
        <script src="/altcraft/scripts/ui"></script>
        <title>Chat</title>
    </head>
    <body class="body-chat">
        <div id="chat">
        </div>
        <div id="chat-footer">
            <input type="text" id="chat-input" class="mc-text" onkeydown="if event.parameters.key_identifier == 72 then SendChatMessage(document) end" />
            <button id="chat-send" class="mc-button" onclick="SendChatMessage(document)">Send</button>
        </div>
    </body>
</rml>