12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <html>
- <head>
- <title>Already Logged In</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=no">
- <link rel="stylesheet" href="../../script/semantic/semantic.css">
- <script type="application/javascript" src="../../script/jquery.min.js"></script>
- <script type="application/javascript" src="../../script/semantic/semantic.js"></script>
- <style>
- #game{
- border: 1px solid black;
- }
- </style>
- </head>
- <body>
- <br><br>
- <div class="ui text container">
- <div class="ui stackable grid">
- <div class="eight wide column" style="margin-top:8rem;">
- <h2 class="ui header">
- <i class="remove icon"></i>
- <div class="content">
- Already Logged In
- <div class="sub header">This client has already logged in with another user account.</div>
- </div>
- </h2>
- <div class="ui divider"></div>
- <small>Solution: Please log out the previous account before logging into another one.</small>
- </div>
- <div class="eight wide column">
- <div id="errorpic" class="ui text container">
- <img class="ui image" src="/img/public/errors/already_logged_in.png">
- </div>
-
- </div>
- </div>
-
- <div class="ui divider"></div>
- ERROR: DUPLICATE-AUTOLOGIN-STATUS
- </div>
- <script>
- $(window).on("resize", function(){
- if (window.innerHeight > window.innerWidth){
- $("#errorpic").attr("align","center");
- }else{
- $("#errorpic").attr("align","left");
- }
- })
- </script>
- </body>
- </html>
|