summaryrefslogtreecommitdiff
path: root/assets/index.html
blob: 578593648247bd8e261208f28f5c2d6ba0b77d94 (plain) (blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
  <html>
    <head>
      <meta charset="UTF-8">
      <title>LawnCable's Mana Launcher</title>
      <link rel="stylesheet" href="./index.css">
      <link rel="stylesheet" href="./lib/animate.min.css">
    </head>
    <body>


      <div class="outer_wrapper">
        <div id="topbar">
          <span>LawnCable's Mana Launcher</span>
          <div class="topbar-btn-container">
            <button id="debug"><i class="fas fa-terminal"></i></button>
            <button id="minimize"><i class="fas fa-minus"></i></button>
            <button id="quit"><i class="fas fa-times"></i></button>
          </div>
          <div class="toolbar-shadow"></div>
        </div>
        <div class="inner_wrapper">
          <div class="content">
            <div id="contentBackground"></div>
            <div id="serverPage"></div>
          </div>
          <div class="sidebar" id="sidebar"></div>
        </div>
        <div class="footer">
          <div id="activity"></div>
          <button id="play">Play</button>
          <span id="LoginText"></span>
          <progress id="progress" value="0" max="100"></progress>
        </div>
      </div>
        <dialog id="TOSDialog">
          <form method="dialog">
            You have to <b>accept</b> the <b>Terms & Rules</b> of this Gameserver to play on it.<br>
            If you allready accepted them they probably got <b>updated</b>.
            <menu>
              <button id="TOSCancel">No</button>
              <button id="TOSOpen">Open Terms</button>
              <button id="TOSAccept">Accept</button>
            </menu>
          </form>
        </dialog>
      <script>
        require('../dist/renderer/index.js');
        require('../dist/renderer/customEvents.js');
        const sv = require('../dist/renderer/serverView.js');
      </script>
      <script defer src="./lib/fontawesome/fontawesome-all.min.js"></script>
    </body>
  </html>