summaryrefslogtreecommitdiffstats
path: root/cwd/assets/altcraft/ui/main-menu.rml
blob: e796b67f2d36888fd244c6cdb977aaba08bb5f1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<rml>
    <head>
        <link type="text/rcss" href="mc-styles" />
        <link type="text/rcss" href="main-menu-styles" />
        <title>MainMenu</title>
    </head>
    <body id="body-main-menu">
        <strong class="mc-title" id="title">AltCraft</strong>
        <p class="mc-p" id="disclaimer">AltCraft is currently not finished, but there is some buggy early testing going on.</p>
        <p class="mc-p" id="hostname-text">Enter the hostname of a server and your username to connect to it:</p>
        <input class="mc-text" id="hostname" value="127.0.0.1:25565"/>
        <input class="mc-text" id="username" value="HelloOne"/>
        <button class="mc-button" id="connect" onclick="
        AC.ConnectToServer(
            document:GetElementById('hostname'):GetAttribute('value'),
            document:GetElementById('username'):GetAttribute('value'))">Connect</button>
        <input type="button" disabled class="mc-button" id="options">Options...</input>
        <button class="mc-button" id="exit" onclick="AC.Exit()">Quit game</button>
    </body>
</rmL>