-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat.html
More file actions
30 lines (27 loc) · 910 Bytes
/
chat.html
File metadata and controls
30 lines (27 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Letterbox</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link href="css/ratchet.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<script src="js/ratchet.min.js"></script>
</head>
<body>
<header class="bar bar-nav">
<a href="chats.html" class="btn btn-link btn-nav pull-left" data-transition="slide-out">
<span class="icon icon-left"></span>
Chats
</a>
<h1 class="title">Letterbox</h1>
</header>
<div class="content">
<div class="lb-chat-bar bar bar-standard bar-footer">
<input type="text" placeholder="Type your message here" />
</div>
</div>
</body>
</html>