-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1009 Bytes
/
index.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
33
<html>
<head>
<title>Home</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" media="screen" href="/public/stylesheets/main.css">
<link rel="shortcut icon" type="image/png" href="/public/images/favicon.png">
<script src="/public/javascripts/jquery-1.4.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="/public/javascripts/zentweet-client.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<header>
<a href="/">Zentweet</a>
<form id="search" action="#" method="post">
<input type="text" placeholder="search" name="search" />
</form>
</header>
<article id="new-tweet">
<form action="#" method="post">
<div>
<label>What's happening ?</label>
<textarea type="text" name="message" id="message"></textarea>
</div>
<div>
<input type="submit" />
</div>
</form>
</article>
<article id="tweets">
<ul>
</ul>
</article>
</body>
</html>