]> git.cworth.org Git - empires-server/blob - login.html
Add a simple /stats endpoint to get a count of current games in progress
[empires-server] / login.html
1 <!DOCTYPE html>
2 <html>
3   <head>
4     <meta charset="utf-8"/>
5     <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
6
7     <title>LMNO: Login</title>
8
9     <link rel="stylesheet" href="/reset.css" type="text/css" />
10     <link rel="stylesheet" href="/style.css" type="text/css" />
11   </head>
12   <body>
13
14     <script src="/lmno.js"></script>
15
16     <div id="page">
17
18       <div id="message-area">
19       </div>
20
21       <!-- The return false prevents the page from being reloaded -->
22       <form id="login-form" onsubmit="lmno_login(this); return false">
23         <div class="form-field large">
24           <label for="username">Username</label>
25           <input type="text" id="username" required>
26         </div>
27
28         <div class="form-field large">
29           <label for="Password">Password</label>
30           <input type="password" id="password" required>
31         </div>
32
33         <div class="form-field large">
34           <button type="submit">
35             Login
36           </button>
37         </div>
38       </form>
39
40     </div>
41   </body>
42 </html>