summaryrefslogtreecommitdiffstats
path: root/MCServer/webadmin/login_template.html
blob: 4ab76b36b219c3ecdbbc860dfb3273fec75abf77 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* Copyright Justin S and MCServer Team, licensed under CC-BY-SA 3.0 */
<!DOCTYPE html>
<head>
  <title>
    MCServer WebAdmin - Login
  </title>
  <meta http-equiv=Content-Type content="text/html; charset=utf-8" />
  <link href=login.css rel=stylesheet type=text/css>
  <link rel=icon href=favicon.ico>
</head>
<body>
  <div class=contention>
    <div class=row1>
      <div class=wrapper>
        <img src=logo_login.png alt="MCServer Logo" class=logo>
      </div>
    </div>
    <div id=panel>
      <div class=upper>
        <div class=wrapper>
          <div>
            <form method=get action=webadmin/>
            <button type=submit value="Log in" style="width:150px;height:25px;font-family:'Source Sans Pro',sans-serif;background:transparent;border:none!important;vertical-align:middle">
              <strong>
                <img src=login.gif style="vertical-align:bottom"/>
                WebAdmin Log in
              </strong>
            </button>
          </form>
        </div>
      </div>
    </div>
  </div>
  <div class="row2 push10">
    <div class="wrapper padtopp">
      <table border=0 cellspacing=0 cellpadding=5 class=tborder style=margin-bottom:5px id=post_16419>
        <tbody>
          <tr>
            <td class="thead rounded_top">
              <div style=float:left!important>
                <strong>
                  MCServer WebAdmin
                </strong>
              </div>
            </td>
          </tr>
          <tr>
            <td class="trow2 post_content">
              <div class=post_body id=pid_16419>
                <iframe width=100% height=100% style=border:none;min-height:350px;max-height:450px src=/guest.html>
                </iframe>
              </div>
            </td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>
</div>
<div id=footer>
  <div class=upper>
    <div class=wrapper>
      <ul class="menu bottom_links">
        <li>
          <a href=http://www.mc-server.org target=_blank>
            MCServer
          </a>
        </li>
        <li>
          <a href=http://forum.mc-server.org target=_blank>
            Forums
          </a>
        </li>
        <li>
          <a href=http://builds.cuberite.org target=_blank>
            Buildserver
          </a>
        </li>
        <li>
          <a href=http://mc-server.xoft.cz/LuaAPI target=_blank>
            API Documentation
          </a>
        </li>
        <li>
          <a href=http://book.mc-server.org/ target=_blank>
            User's Manual
          </a>
        </li>
      </ul>
    </div>
  </div>
  <div class=lower>
    <div class=wrapper>
      <span id=current_time>
        <strong>
          Current time:
        </strong>
        
        <script type=text/javascript>
          document.write('Time: <strong><span id="date-time">',new Date().toLocaleString(),"</span></strong>");
  if(document.getElementById){
    onload=function(){
      setInterval("document.getElementById ('date-time').firstChild.data = new Date().toLocaleString()",50)}
  };
        </script>
      </span>
      <span id=copyright>
        Copyright © 
        <a href=http://www.mc-server.org target=_blank>
          MCServer Team
        </a>
        2014.
      </span>
    </div>
  </div>
</div>
</body>
</html>