NorbiPeti
1938a9f1db
- Added "Add user to conversation" -- Added a window to search for users to add -- And made it all working - Fixed the unread indicator - Removed older TODOs
109 lines
No EOL
3.4 KiB
HTML
109 lines
No EOL
3.4 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<head>
|
|
<title>Chat</title>
|
|
<meta charset="UTF-8" />
|
|
<script src="js/jquery-3.1.0.js"></script>
|
|
<script src="js/moment-with-locales.js" charset="UTF-8"></script>
|
|
<script src="js/utils.js"></script>
|
|
<script src="js/sendmessage.js"></script>
|
|
<script src="js/receivemessage.js"></script>
|
|
<script src="js/login.js"></script>
|
|
<script src="js/register.js"></script>
|
|
<link rel="stylesheet" href="css/style.css" />
|
|
<script src="js/index.js"></script>
|
|
<script src="js/conversations.js"></script>
|
|
<script src="js/users.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="errormsg">
|
|
</div>
|
|
<div id="sidebarl">
|
|
<div id="conversations">
|
|
</div>
|
|
</div>
|
|
<div id="sidebarr">
|
|
<div id="userbox">
|
|
<p>Logged in as
|
|
<username/>
|
|
</p>
|
|
<a href="/logout">Logout</a>
|
|
</div>
|
|
<div id="usersinconv">
|
|
</div>
|
|
</div>
|
|
<div id="loginregisterbox">
|
|
<div id="loginbox">
|
|
<h2>Login</h2>
|
|
<form>
|
|
<table>
|
|
<tr>
|
|
<td>E-mail:</td>
|
|
<td>
|
|
<input type="email" name="email">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Password:</td>
|
|
<td>
|
|
<input type="password" name="pass">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="button" value="Login" onclick="login(this.form)">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
<div id="registerbox">
|
|
<h2>Register</h2>
|
|
<form name="form">
|
|
<table>
|
|
<tr>
|
|
<td>Name:</td>
|
|
<td>
|
|
<input type="text" name="name" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>E-mail:</td>
|
|
<td>
|
|
<input type="email" name="email" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Password</td>
|
|
<td>
|
|
<input type="password" name="pass" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Password confirm</td>
|
|
<td>
|
|
<input type="password" name="pass2" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="button" value="Register" onclick="register(this.form)" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div id="usercontent">
|
|
<div id="channelmessages"></div>
|
|
<textarea id="msginput" autofocus="autofocus"></textarea>
|
|
</div>
|
|
<div id="hoverdialogcont">
|
|
<div id="hoverdialogmid">
|
|
<div id="hoverdialog">
|
|
<p>Loading...</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body> |