You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.6 KiB
49 lines
1.6 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="cache-control" content="max-age=0" />
|
|
<meta http-equiv="cache-control" content="no-cache" />
|
|
<meta http-equiv="expires" content="0" />
|
|
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
|
|
<meta http-equiv="pragma" content="no-cache" />
|
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
|
<!-- <script src="/web/lib/jquery-2.1.1.min.js"></script> -->
|
|
<link href="/web/style.css" rel="stylesheet" type="text/css">
|
|
<title>meshed up</title>
|
|
</head>
|
|
<body>
|
|
<div id="header">
|
|
<h2>Meshenger</h2>
|
|
</div>
|
|
<!--
|
|
<form id="message-form" action="">
|
|
<table width="100%" style="padding :10px;">
|
|
<tr>
|
|
<td width="100px">
|
|
<input style="width:100%" id="new-sender" type="text" placeholder="Your name">
|
|
</td>
|
|
<td>
|
|
<input style="width:100%" id="new-message" type="text" placeholder="Your message">
|
|
</td>
|
|
<td width="50px">
|
|
<input class="send-button" style="width:50px" type="button" value="Send">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
-->
|
|
|
|
<form id="message-form" action="">
|
|
<textarea id="name" rows="1" placeholder="Your Name"></textarea>
|
|
<textarea id="message" rows="2" placeholder="Your Message"></textarea>
|
|
<input type="submit" class="send-button" value="Send">
|
|
</form>
|
|
|
|
<div class="messages">
|
|
<ul id="inbox"></ul>
|
|
|
|
<ul id="outbox"></ul>
|
|
</div>
|
|
<script src="/web/main.js"></script>
|
|
</body>
|
|
</html>
|
|
|