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.
34 lines
1.1 KiB
34 lines
1.1 KiB
10 years ago
|
<!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>
|
||
|
|
||
|
<textarea id="name" rows="1" placeholder="Your Name (leave empty for anonymous)"></textarea>
|
||
|
<textarea id="message" rows="3" placeholder="Your Message"></textarea>
|
||
|
<button style="width:100%" id="send">Send</button>
|
||
|
|
||
|
<select id="messagesort" name="messageSort">
|
||
|
<option value="dateReceived">Sort by Date Received</option>
|
||
|
<option value="dateSend">Sort by Date Send</option>
|
||
|
</select>
|
||
|
<ul id="inbox"></ul>
|
||
|
|
||
|
<ul id="outbox"></ul>
|
||
|
|
||
|
<script src="/web/main.js"></script>
|
||
|
</body>
|
||
|
</html>
|