Rework and feature parity to existing site
[oweals/finalsclub.git] / public / index_old.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html>
3         <!-- 
4                  Currently tested with:
5                                                 Mac             Windows
6                                          ______________________
7                         Chrome  |       15              -
8                         Safari  |       5               -
9                         FF              |       8               8
10                         IE              |       N/A             9
11         -->
12
13         <head>
14                 <title>FinalsClub.org</title>
15
16                 <!-- XXX Some SEO here would be nice -->
17                 <link rel='stylesheet' href='/stylesheets/fc2.css'>
18
19                 <script type='text/javascript' src='/javascripts/jquery.min.js'></script>
20                 <script type='text/javascript' src='/javascripts/es5-shim.min.js'></script>
21                 <script type='text/javascript' src='/socket.io/socket.io.js'></script>
22                 <script type='text/javascript' src='/javascripts/protodiv.js'></script>
23                 <script type='text/javascript' src='/javascripts/main.js'></script>
24
25                 <meta name="viewport" content="width=device-width,user-scalable=no,minimum-scale=1.0,maximum-scale=1.0,initial-scale=1.0">
26                 <meta name="apple-touch-icon" href=""> <!-- XXX -->
27                 <meta name="icon" href="">
28
29         </head>
30         <body>
31                 <div class="masthead">
32                         <div class="logbar">
33                                 <div class="loginstatus">&nbsp;</div>
34                         </div>
35                         <div class="navbar">
36                                 <table>
37                                         <tr>
38                                                 <td>
39                                                         <a href="/"><img src="/images/finals-club-wht.png" class="logo"/></a>
40                                                 </td>
41                                                 <td class="menu">
42                                                         <a href="javascript:goPage('/schools')">Start Here!</a>
43                                                         <a href="http://blog.finalsclub.org">Blog</a>
44                                                         <a href="javascript:goPage('/archive')">Archive</a>
45                                                         <a href="javascript:goPage('/press')">Press</a>
46                                                         <a href="javascript:goPage('/register')">Create an Account</a>
47                                                         <a href="javascript:goPage('/login')" class="special">Login</a>
48                                                 </td>
49                                         </tr>
50                                 </table>
51                         </div>
52                         <div class="logbar">&nbsp;</div>
53                 </div>
54
55                 <div id="topofcontent"></div>
56
57                 <div class="content">
58                         <style>
59                                 /* The is here is because it's related less to "styling" and more to UI "behavior" */
60                                 .page { display: none; }
61                         </style>
62                         <div class=page id=pg_home>
63                                 <div class="contenthome">
64                                         <div class="tagline">
65                                                 <p>
66                                                 Welcome to FinalsClub.org, a 501(c)(3) non-profit
67                                                 open education project dedicated to helping college
68                                                 students collaborate, learn, and share their
69                                                 knowledge freely online.
70                                                 </p>
71                                                 <p>
72                                                 Please create an account with your school email address
73                                                 to try our tools or browse our course archive to learn
74                                                 something new.
75                                                 Thank you for helping us improve access to education,
76                                                 one lecture at a time.
77                                                 </p>
78                                                 <p></p>
79                                                 <div id="learnsomething" class="button green">Learn something &gt;&gt; </div>
80                                                 <p></p>
81                                                 <iframe src="http://player.vimeo.com/video/30647271?title=0&amp;byline=0&amp;portrait=0" width="350" height="250" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" allowfullscreen="allowFullScreen"></iframe>
82                                         </div>
83                                 </div>
84                         </div>
85
86                         <div class=page id=pg_schools>
87                                 <h1>Universities</h1>
88                                 <div class="proto school" id=PROTO_school onclick="goPage('/school/___id__')">
89                                         <div class=name>__name__</div>
90                                         <div class=desc>__description__</div>
91                                 </div>
92                         </div>
93
94                         <div class=page id=pg_courses>
95                                 <h1>Courses for <span id=school_name></span></h1>
96                                 <div class="proto course" id=PROTO_course>
97                                         <div class=dept>__department__</div>
98                                         <div class=name>
99                                                 <a href="javascript:goPage('/course/___id__')">__number__: __name__</a>
100                                         </div>
101                                 </div>
102                         </div>
103
104                         <div class=page id=pg_lectures>
105                                 <div class="proto lectures_head" id=PROTO_lectures_head>
106                                         <h1>Lectures for Course __number__ : __name__</h1>
107                                         Subject: __subject__<br>
108                                         Department: __department__<br>
109                                 </div>
110                                 <div class="proto lectures_instructor" id=PROTO_lectures_instructor>
111                                         Instructor: __name__ (__email__)<br>
112                                 </div>
113                                 <div class="proto lecture" id=PROTO_lecture>
114                                         <div class=name>
115                                                 <a href="javascript:goPage('/lecture/___id__')">__name__</a><br>
116                                                 Created: __date__<br>
117                                         </div>
118                                 </div>
119                         </div>
120
121                         <div class=page id=pg_notes>
122                                 <h1>Notepads </h1>
123                                 <div class="proto note" id=PROTO_note>
124                                         <div class=name>
125                                                 <a href="/note/___id__">__name__</a>
126                                         </div>
127                                 </div>
128                         </div>
129
130                         <div class=page id=pg_archive_subjects>
131                                 <h1>Archived Subjects</h1>
132                                 <p>
133                                 Please browse our archive of past courses
134                                 covered at Harvard from 2008 through 2010.
135                                 </p>
136                                 <ul>
137                                         <li class=proto id=PROTO_archive_subject>
138                                                 <a href="javascript:goPage('/archive/subject/__id__')">__name__</a>
139                                         </li>
140                                 </ul>
141                         </div>
142
143                         <div class=page id=pg_archive_courses>
144                                 <h1>Archived Courses</h1>
145                                 <ul>
146                                         <li class=proto id=PROTO_archive_course>
147                                                 <a href="javascript:goPage('/archive/course/__id__')">__name__</a>
148                                         </li>
149                                 </ul>
150                         </div>
151
152                         <div class=page id=pg_archive_notes>
153                                 <h1>Archived Notes</h1>
154                                 <ul>
155                                         <li class=proto id=PROTO_archive_note>
156                                                 <a href="javascript:goPage('/archive/note/___id__')">__topic__</a>
157                                         </li>
158                                 </ul>
159                         </div>
160
161                         <div class=page id=pg_archive_note_display>
162                                 <div id=PROTO_archive_note_display>
163                                         <h1>__topic__</h1>
164                                         <div>__text__</div>
165 <pre>__err__</pre>
166                                 </div>
167                         </div>
168
169                         <div class=page id=pg_register>
170                                 <h1>Create an Account</h1>
171                                 <form id="form_register" action="/register" method="POST">
172                                         <div class="zarea">
173                                                 <div class="row">
174                                                         <div class="label">
175                                                                 <label for="email">Email</label>
176                                                         </div>
177                                                         <div class="field">
178                                                                 <input type="text" name="email">
179                                                         </div>
180                                                 </div>
181                                                 <div class="row">
182                                                         <div class="label">
183                                                                 <label for="password">Password</label>
184                                                         </div>
185                                                         <div class="field">
186                                                                 <input type="password" name="password">
187                                                         </div>
188                                                 </div>
189                                                 <div class="row">
190                                                         <div class="label">
191                                                                 <label for="school">School</label>
192                                                         </div>
193                                                         <div class="field">
194                                                                 <select name="school">
195                                                                         <option value="Berkeley">Berkeley</option>
196                                                                         <option value="Brown">Brown</option>
197                                                                         <option value="Columbia">Columbia</option>
198                                                                         <option value="Cornell">Cornell</option>
199                                                                         <option value="Dartmouth">Dartmouth</option>
200                                                                         <option value="Harvard">Harvard</option>
201                                                                         <option value="MIT">MIT</option>
202                                                                         <option value="Princeton">Princeton</option>
203                                                                         <option value="Stanford">Stanford</option>
204                                                                         <option value="UPenn">UPenn</option>
205                                                                         <option value="University of Texas">University of Texas</option>
206                                                                         <option value="Yale">Yale</option>
207                                                                         <option value="Other">Other</option>
208                                                                 </select>
209                                                         </div>
210                                                 </div>
211                                                 <div class="row">
212                                                         <div class="label">
213                                                                 <label for="name">Name</label>
214                                                         </div>
215                                                         <div class="field">
216                                                                 <input type="text" name="name">
217                                                         </div>
218                                                 </div>
219                                                 <div class="row">
220                                                         <div class="label">
221                                                                 <label for="affil">Affiliation</label>
222                                                         </div>
223                                                         <div class="field">
224                                                                 <select name="affil">
225                                                                         <option value="Student">Student</option>
226                                                                         <option value="Teachers Assistant">Teachers Assistant</option>
227                                                                 </select>
228                                                         </div>
229                                                 </div>
230                                                 <div class="row">
231                                                         <div class="label">
232                                                                 &nbsp;
233                                                         </div>
234                                                         <div class="field">
235                                                                 <button>Register</button>
236                                                         </div>
237                                                 </div>
238                                         </div>
239                                 </form>
240                         </div>
241
242                         <div class=page id=pg_login>
243                                 <h1>Login</h1>
244                                 <form id="form_login" action="/login" method="POST">
245                                         <div class="zarea">
246                                                 <div class="row">
247                                                         <div class="label">
248                                                                 <label for="email">Email</label>
249                                                         </div>
250                                                         <div class="field">
251                                                                 <input type="text" name="email" size="15" value="joe@sleepless.com">
252                                                         </div>
253                                                 </div>
254                                                 <div class="row">
255                                                         <div class="label">
256                                                                 <label for="password">Password</label>
257                                                         </div>
258                                                         <div class="field">
259                                                                 <input type="password" name="password" size="15">
260                                                         </div>
261                                                 </div>
262                                                 <div class="row">
263                                                         <div class="label">&nbsp;
264                                                         </div>
265                                                         <div class="field">
266                                                                 <button class="major">Login</button>
267                                                                 <span class="reglink">
268                                                                         <a href="/resetpw">Forgot password?</a>
269                                                                 </span>
270                                                         </div>
271                                                 </div>
272                                                 <div class="row">
273                                                         <div class="label">&nbsp;
274                                                         </div>
275                                                         <div class="field">
276                                                                 <span class="reglink">
277                                                                         <a href="/register">Create an Account</a>
278                                                                 </span>
279                                                         </div>
280                                                 </div>
281                                         </div>
282                                 </form>
283                         </div>
284
285                         <div class=page id=pg_conduct>
286                                 <div class="conduct">
287                                         <h1>Code of Conduct</h1>
288                                         <p class="academic">
289                                                 <img src="/images/keep-it-academic.png" alt="Keep it academic.">
290                                         </p>
291                                         <p class="vague">
292                                                 This directive is deliberately vague to
293                                                 accommodate creative humor, insight, and exploration.<br>
294                                                 Disruptive or irrelevant material, however,
295                                                 will be subject to removal.<br>
296                                                 Just keep it academic, and we'll all be better off.<br>
297                                         </p>
298                                 </div>
299                         </div>
300
301                         <div class=page id=pg_press>
302                                 <h1>FinalsClub in the Press</h1>
303                                 <div class="press">
304                                         <img src="/images/boston.com.png" class="press">
305                                         <p class="date">December 13, 2009</p>
306                                         <p>Plenty of Harvard graduates have traded on the fame and prestige of their alma mater, but few have done so the way Andrew Magliozzi has. The year he graduated, 2005, he started a tutoring company located steps from Harvard Yard, with a name, Veritas, that is the motto of his storied alma mater.</p>
307                                         <p>Then, two years ago, Magliozzi started up a side project called Finalsclub.org.</p>
308                                         <p class="readmore">
309                                         <a href="http://www.boston.com/bostonglobe/ideas/articles/2009/12/13/freeharvardeducationcom">Read more ...</a>
310                                         </p>
311                                 </div>
312                                 <hr>
313                                 <div class="press">
314                                         <img src="/images/harvard-crimson.jpg" class="press">
315                                         <p class="date">Wednesday, February 18, 2009</p>
316                                         <p>A rapidly growing course preparatory Web site, FinalsClub.org, is moving forward with a plan to expand its site in spite of controversy over the legality of the venture. </p>
317                                         <p>The Web site, which allows students to share notes, create study groups, and blog about lectures and sections, recently hired 10 Harvard College students to serve as BETA testers for the site. </p>
318                                         <p class="readmore">
319                                         <a href="http://www.thecrimson.com/article/2009/2/18/finalscluborg-passes-punch-span-stylefont-weight-boldcorrection">Read more ...</a>
320                                         </p>
321                                 </div>
322                                 <hr>
323                                 <div class="press">
324                                         <img src="/images/blown-to-bits.png" class="press">
325                                         <p class="date">September 27th, 2009</p>
326                                         <p>Computer Science professor and former Dean of Harvard, Harry Lewis, embraces FinalsClub's work and its guiding principle of open education.  Even as Harvard University has not been wholly sympathetic to the FinalsClub mission, invoking the Copyright Act of 1976, assuming a similar position to other major institutions such as University of Texas, Lewis supports working towards the proverbial "temple of the free exchange of ideas."  A course he taught in the Harvard Extension School was also shared freely online.  </p>
327                                         <p class="readmore">
328                                         <a href="http://www.bitsbook.com/2009/09/a-harvard-skirmish-in-the-copyright-wars">Read more ...</a>
329                                         </p>
330                                 </div>
331                         </div>
332                         <div class=page id=pg_notfound>
333                                 <h1>Page Not Found</h1>
334                                 Sorry, there is no content for this page.
335                         </div>
336                 </div>
337
338                 <div class="footer">
339                         <table>
340                                 <tr>
341                                         <td class="col1">
342                                                 <div class="logo">
343                                                         <img src="/images/finals-club-wht.png" title="FinalsClub.org" class="lilogo"/>
344                                                 </div>
345                                                 <div>Copyright 2011</div>
346                                                 <div>All Rights Reserved</div>
347                                         </td>
348                                         <td class="col2">
349                                                 <a href="javascript:goPage('/conduct')">Code of Conduct</a>
350                                                 <a href="http://blog.finalsclub.org/about.html">About</a>
351                                                 <a href="http://blog.finalsclub.org/contact.html">Contact</a>
352                                                 <a href="http://blog.finalsclub.org/legal.html">Legal</a>
353                                                 <a href="http://blog.finalsclub.org/team.html">Team</a>
354                                         </td>
355                                 </tr>
356                         </table>
357                 </div>
358                 <div class="footerer">
359                         <p>
360                                 This work is licensed under a
361                                 Creative Commons Attribution-ShareAlike 3.0
362                                 United States License
363                         </p>
364                         <p>
365                                 <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/us/88x31.png"/></a>
366                                 <a href="http://mixpanel.com/f/partner"><img alt="Real Time Web Analytics" src="http://mixpanel.com/site_media/images/partner/badge_blue.png" style="border-width:0;margin:2px;"/></a>
367                         </p>
368                 </div>
369
370         </body>
371 </html>