-
Notifications
You must be signed in to change notification settings - Fork 0
/
flow.html
114 lines (95 loc) · 3.44 KB
/
flow.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Flomad - Flow - Tell a Story</title>
<script src="jquery.js" type="text/javascript"></script>
<link href="style-flow.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="images/favicon.ico" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-24771257-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="container">
<div id="header">
<ul>
<li id="flomad"><h1><a href="index.html">Flomad</a></h1></li>
<li id="collab">Collaborative Storytelling</li>
<li id="logo"><img src="logo-header.jpg" alt="logo" /></li>
<li id="faq"><a href="faq.html">FAQ</a> / <a href="about.html">About</a></li>
</ul>
</div><!--end of header-->
<center>
<h2>Rules</h2>
<div id="rules">
<p>1. Additions to the story must be shorter than 120 characters<br />
2. Play nice - don't make us come after you<br />
3. Have fun</p>
</div>
<div class="objects">
<div class="chatBox">
<div class="user">
<form name="signIn" action="" onsubmit="return false">
<span class="error">Invalid Username</span>
<input type="text" size="13px" name="username" id="username" value="enter username" onclick='document.signIn.username.value = ""' />
<input type="submit" id="signIn" value="SIGN IN" />
</form>
</div>
<div class="main">
</div>
<div class="messageBox">
<form name="messageBoxSignInForm" id="messageBoxSignInForm" onsubmit="return false">
<input type="submit" id="messageBoxSignIn" value="Sign in to add to story" />
</form>
<form name="newMessage" class="newMessage" action="" onsubmit="return false">
<div class="left">
<textarea name="newMessageContent" id="newMessageContent" >Enter your message here</textarea>
</div>
<div class="right">
<input type="submit" id="newMessageSend" value="SEND" />
</div>
</form>
</div>
</div>
<div class="displayNames">
</div>
</div><!-- end of objects-->
</center>
<center>
<div class="motivation">
<div class="quote">
The secret to creativity is knowing how to hide your sources. <i>-Albert Einstein</i>
</div>
<div id="button">
<form id="motivation" onsubmit="return false"><input id="inspireme" type="submit" value="Inspire Me" /></form>
</div>
</div>
</center>
<br /><br />
<center>
<div id="comingsoon">
<h2><a href="comingsoon.html">Features Coming Soon</a></h2>
</div>
</div>
</center>
<script src="signinout.js" type="text/javascript"></script>
<script src="send_message.js" type="text/javascript"></script>
<script src="refresh_message_log.js" type="text/javascript"></script>
<script src="display_names.js" type="text/javascript"></script>
<script src="motivation.js" type="text/javascript"></script>
<center><div id="footer">
<p>Go ahead. Be creative.</p>
<a href="contact.html">Contact</a> - <a href="advertise.html">Advertise</a> - <a href="invest.html">Invest</a><br />
© 2011 Flomad.com
</div></center><!--end of footer-->
</div><!--end of container-->
</body>
</html>