-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
90 lines (80 loc) · 3.28 KB
/
main.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="main.css" type="text/css" media="screen" title="no title" charset="utf-8">
<script src="jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="litl://content/api/v2/openchannel.js"></script>
<!-- this is only useful when running in a chrome extension -->
<script type="text/javascript" src="fakeopenchannel.js"></script>
<script src="util.js"></script>
<script src="sha1.js"></script>
<script src="oauth.js"></script>
<script src="pretty.js"></script>
<script src="flickr.js"></script>
<script src="shorturl.js"></script>
<script src="bitly.js"></script>
<script src="twitter.js"></script>
<script src="jquery.autofontsize.js"></script>
<script src="jquery.template.js"></script>
<script src="page.js"></script>
<script src="signinPage.js"></script>
<script src="twitterPage.js"></script>
<script src="tweetStrip.js"></script>
<script src="main.js"></script>
</head>
<body>
<div id="signin-card" class="view-container">
<span class="signin-message autofontsize">Signin to Twitter</span>
</div>
<div id="signin-channel" class="view-container">
<span class="signin-message autofontsize">Flip me over to signin to Twitter</span>
</div>
<div id="signin-focus" class="view-container">
<div id="signin-content">
<p>If you have a Twitter account, sign in below. If you need to sign up for an account, <a target="_blank" href="http://twitter.com/signup">click here</a>.</p>
<form id="signin_form">
<p class="signinbox">
<label for="username">Username or email</label>
<input id="username" type="text" />
</p>
<p class="signinbox">
<label for="password">Password</label>
<input id="password" type="password" />
</p>
<input type="submit" id="signin-submit" value="Sign in" class="twitter-button-large"/>
<span id="signin-error"></span>
</form>
</div>
</div>
<div id="twitter-focus" class="view-container">
<div id="twitter-focus-content">
<div id="status-update-content">
<span id="status-header-message">What's happening?</span>
<span id="status-charcount"></span>
<form>
<label class="textarea-container">
<textarea rows="2" id="status"></textarea>
</label>
</form>
<span id="post-status"></span>
<span id="status-update-button-container">
<button id="status-update-button" class="twitter-button">Tweet it!</button>
</span>
</div>
<div id="tweetlist-separator"></div>
<div id="twitter-focus-tweetlist" class="tweetlist">
</div>
</div>
</div>
<div id="twitter-card" class="view-container">
<div class="tweetbox">
</div>
</div>
<div id="twitter-channel" class="view-container">
<div class="tweetbox">
</div>
</div>
<div id="tweetstrip">
</div>
</body>
</html>