-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.html
33 lines (30 loc) · 1008 Bytes
/
compose.html
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
30
31
32
<!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="/" class="btn btn-link btn-nav pull-left" data-transition="slide-out">
<span class="icon icon-left"></span>
Back
</a>
<h1 class="title">Compose a new letter</h1>
</header>
<div class="content">
<div class="lb-wrap">
<form class="lb-compose">
<textarea rows="20" placeholder="Be creative!"></textarea>
<a href="/" class="btn" data-transition="slide-in">Send letter</a>
</form>
</div>
</div>
</body>
</html>