12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <!DOCTYPE html>
- <html lang="de">
- <head>
- <title>Chat</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" type="text/css" href="css/app.css" />
- <link rel="stylesheet" type="text/css" href="css/theme.css" />
- </head>
- <script src="/socket.io/socket.io.js" type="application/javascript"></script>
- <script src="https://code.jquery.com/jquery-1.11.1.js" type="application/javascript"></script>
- <script src="js/main.js" type="application/javascript"></script>
- <body>
- <div id="chat-host"></div>
- </body>
- <script id="chat-login-template" type="text/x-custom-template">
- <div class="login">
- <span class="loginError"></span>
- <form id="chat-login-form" action="">
- <div class="inputWrapper usernameWrapper">
- <label>Nickname:</label>
- <input class="username" autocomplete="off" />
- </div>
- <div class="inputWrapper passwordWrapper" style="display: none">
- <label>Passwort:</label>
- <input class="password" type="password" autocomplete="off" />
- </div>
- <button>Chat betreten</button>
- </form>
- </div>
- </script>
- <script id="chat-template" type="text/x-custom-template">
- <div class="main">
- <ul class="messages"></ul>
- <div class="userlistWrapper">
- <h2>Benutzer im Chat</h2>
- <ul class="userlist"></ul>
- </div>
- </div>
- </script>
- <script id="chat-admin-template" type="text/x-custom-template">
- <div class="main">
- <ul class="messages"></ul>
- <div class="userlistWrapper">
- <h2>Benutzer im Chat</h2>
- <ul class="userlist"></ul>
- <h2>Gesperrte IPs</h2>
- <ul class="bannedlist"></ul>
- </div>
- </div>
- </script>
- <script id="chat-message-form-template" type="text/x-custom-template">
- <form class="messageForm" action="">
- <textarea class="messageField" />
- <button>Abschicken</button>
- </form>
- </script>
- <script id="chat-kick-template" type="text/x-custom-template">
- <div class="login">
- <div class="loginError">Sie wurden aus dem Chat entfernt.</div>
- </div>
- </script>
- </html>
|