forked from jhermes/twissjava
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUserline.html
More file actions
27 lines (26 loc) · 777 Bytes
/
Userline.html
File metadata and controls
27 lines (26 loc) · 777 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
<html xmlns:wicket="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<wicket:extend>
<form wicket:id="poster">
<div class="grid_9 alpha">
<textarea maxlength="140" rows="4" cols="40" type="text" wicket:id="tweetbody"></textarea>
</div>
<input type="submit" value="Post Tweet" class="grid_3 omega">
<div class="clear"></div>
</form>
<span class="grid_9 alpha" wicket:id="tweetlist">
<ul>
<li>
<a href="#" wicket:id="link"><span wicket:id="tuname">name</span></a><span wicket:id="tbody">body</span>
</li>
</ul>
</span>
<div wicket:id="pagedown">
<form wicket:id="pageform">
<input type="submit" value="More"/>
</form>
</div>
</wicket:extend>
</body>
</html>