first pass, new design html
[oweals/finalsclub.git] / public / was-index.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         <head>
5                 <title>FinalsClub.org</title>
6
7                 <!-- XXX Some SEO here would be nice -->
8
9                 <link rel='stylesheet' href='/stylesheets/fc2.css'>
10
11                 <script type='text/javascript' src='/javascripts/jquery.min.js'></script>
12                 <script type='text/javascript' src='/javascripts/es5-shim.min.js'></script>
13                 <script type='text/javascript' src='/javascripts/protodiv.js'></script>
14                 <script type='text/javascript' src='/javascripts/main.js'></script>
15                 <script type='text/javascript' src='/socket.io/socket.io.js'></script>
16
17                 <meta name="viewport" content="width=device-width,user-scalable=no,minimum-scale=1.0,maximum-scale=1.0,initial-scale=1.0">
18                 <meta name="apple-touch-icon" href=""> <!-- XXX -->
19                 <meta name="icon" href="">
20
21         </head>
22
23         <body>
24
25                 <div class="masthead">
26                         <div class="logbar">
27         <div class="loginstatus"><div id="login_status" style="display:none;">Currently logged in as <span class="username"></span></div></div>
28                         </div>
29                         <div class="navbar">
30                                 <table>
31                                         <tr>
32                                                 <td>
33                                                         <a href="/"><img src="/images/finals-club-wht.png" class="logo"/></a>
34                                                 </td>
35                                                 <td class="menu">
36                                                         <a href="/schools">Start Here!</a>
37                                                         <a href="http://blog.finalsclub.org">Blog</a>
38                                                         <a href="/archive">Archive</a>
39                                                         <a href="/press">Press</a>
40                                                         <a href="/register" id="register_link">Create an Account</a>
41                                                         <a href="/profile" id="profile_link" style="display:none;">Profile</a>
42                                                         <a href="/login" id="login_link" class="special">Login</a>
43                                                 </td>
44                                         </tr>
45                                 </table>
46                         </div>
47                         <div class="logbar">&nbsp;</div>
48                 </div>
49
50                 <div id="topofcontent"></div>
51
52     <div id="messages" class="page"><span id="PROTO_message" class="__type__">__msg__</span></div>
53
54                 <div class="content">
55                         <style>
56                                 /* The is here is because it's related less to "styling" and more to UI "behavior" */
57                                 .page { display: none; }
58                         </style>
59
60       <noscript>
61         This site requires JavaScript to properly function. Please enable JavaScript or use a modern browser such as <a href="http://google.com/chrome">Google Chrome</a> or <a href="http://firefox.com">Firefox</a>.
62       </noscript>
63
64
65                         <div class=page id=pg_home>
66                                 <div class="contenthome">
67                                         <div class="tagline">
68                                                 <p>
69                                                 Welcome to FinalsClub.org, a 501(c)(3) non-profit
70                                                 open education project dedicated to helping college
71                                                 students collaborate, learn, and share their
72                                                 knowledge freely online.
73                                                 </p>
74                                                 <p>
75                                                 Please create an account with your school email address
76                                                 to try our tools or browse our course archive to learn
77                                                 something new.
78                                                 Thank you for helping us improve access to education,
79                                                 one lecture at a time.
80                                                 </p>
81                                                 <p></p>
82                                                 <div id="learnsomething" class="button green">Learn something &gt;&gt; </div>
83                                                 <p></p>
84             <div id="screencast"></div>
85                                         </div>
86                                 </div>
87                                 
88                         </div>
89
90
91
92                         <div class=page id=pg_schools>
93                                 <h1>Universities</h1>
94                                 <div class="proto school" id=PROTO_school onclick="goPage('/school/___id__')">
95                                         <div class=name>__name__</div>
96                                         <div class=desc>__description__</div>
97                                 </div>
98                         </div>
99
100
101
102                         <div class=page id=pg_courses>
103                                 <h1>Courses for <span id=school_name></span></h1>
104                                 <div class="proto course" id=PROTO_course>
105                                         <div class=dept>__department__</div>
106                                         <div class=name>
107                                                 <a href="/course/___id__">__number__: __name__</a>
108                                         </div>
109                                 </div>
110         <div>
111           <span class="sub_menu" style="display:none;">
112             <a href="" id="new_course">New Course</a>
113           </span>
114           <form method="POST" id="form_course" style="display:none;">
115             <h1>Create New Course</h1>
116             <p>Use this form to create a new course. After creating the course, you can create a lecture within it.</p>
117             <div class="row">
118               <div class="label">Course number</div>
119               <div class="field">
120                 <input type="text" name="number">
121               </div>
122             </div>
123             <div class="row">
124               <div class="label">Course name</div>
125               <div class="field">
126                 <input type="text" name="name">
127               </div>
128             </div>
129             <div class="row">
130               <div class="label">Course subject</div>
131               <div class="field">
132                 <input type="text" name="subject">
133               </div>
134             </div>
135             <div class="row">
136               <div class="label">Course department</div>
137               <div class="field">
138                 <input type="text" name="department">
139               </div>
140             </div>
141             <div class="row">
142               <div class="label">Instructor's Name</div>
143               <div class="field">
144                 <input type="text" name="instructorName">
145               </div>
146             </div>
147             <div class="row">
148               <div class="label">Instructor's Email</div>
149               <div class="field">
150                 <input type="text" name="email">
151               </div>
152             </div>
153             <div class="row">
154               <div class="label">&nbsp;</div>
155               <div class="field">
156                 <button>Create Course</button>
157               </div>
158             </div>
159           </form>
160         </div>
161                         </div>
162
163
164
165                         <div class=page id=pg_lectures>
166                                 <div class="proto lectures_head" id=PROTO_lectures_head>
167                                         <h1>Lectures for Course __number__ : __name__</h1>
168                                         Subject: __subject__<br>
169                                         Department: __department__<br>
170                                 </div>
171                                 <div class="proto lectures_instructor" id=PROTO_lectures_instructor>
172           Instructor: __name__ <span class="instructor_email">(__email__)</span><br>
173                                 </div>
174                                 <div class="proto lecture" id=PROTO_lecture>
175                                         <div class=name>
176                                                 <a href="/lecture/___id__">__name__</a><br>
177                                                 Created: __date__<br>
178                                         </div>
179                                 </div>
180         <div>
181           <span class="sub_menu" style="display:none;">
182             <a href="" id="new_lecture">New Lecture</a>
183           </span>
184           <form method="POST" id="form_lecture" style="display:none;">
185             <h1>Create New Lecture</h1>
186             <p>Use this form to create a new lecture. After creating the lecture, you can then create a notes-taking session within it.</p>
187             <div class="row">
188               <div class="label">Lecture Name</div>
189               <div class="field">
190                 <input type="text" name="name">
191               </div>
192             </div>
193             <div class="row">
194               <div class="label">&nbsp;</div>
195               <div class="field">
196                 <button>Create Lecture</button>
197               </div>
198             </div>
199           </form>
200         </div>
201                         </div>
202
203
204
205                         <div class=page id=pg_notes>
206                                 <div class="proto notes_head" id=PROTO_notes_head>
207                                         <h1>Note pads for Course __number__ : __name__</h1>
208                                         Subject: __subject__<br>
209                                         Department: __department__<br>
210                                 </div>
211                                 <div class="proto notes_instructor" id=PROTO_notes_instructor>
212           Instructor: __name__ <span class="instructor_email">(__email__)</span><br>
213                                 </div>
214                                 <div class="proto note" id=PROTO_note>
215                                         <div class=name>
216                                                 <a href="/note/___id__">__name__</a> Visits: __visits__
217                                         </div>
218                                 </div>
219         <div>
220           <span class="sub_menu" style="display:none;">
221             <a href="" id="new_note">New Note Pad</a>
222           </span>
223           <form method="POST" id="form_note" style="display:none;">
224             <h1>Create New Note Pad</h1>
225             <p>Use this form to create a new note pad. You can then use this as a notes-taking session.</p>
226             <div class="row">
227               <div class="label">Note Pad Name</div>
228               <div class="field">
229                 <input type="text" name="name">
230               </div>
231             </div>
232             <div class="row">
233               <div class="label">Private</div>
234               <div class="field">
235                 <input type="checkbox" name="private" value="true">
236               </div>
237             </div>
238             <div class="row">
239               <div class="label">&nbsp;</div>
240               <div class="field">
241                 <button>Create Note Pad</button>
242               </div>
243             </div>
244           </form>
245         </div>
246                         </div>
247
248
249
250                         <div class=page id=pg_archive_subjects>
251                                 <h1>Archived Subjects</h1>
252                                 <p>
253                                 Please browse our archive of past courses
254                                 covered at Harvard from 2008 through 2010.
255                                 </p>
256                                 <ul>
257                                         <li class=proto id=PROTO_archive_subject>
258                                                 <a href="/archive/subject/__id__">__name__</a>
259                                         </li>
260                                 </ul>
261
262                         </div>
263
264
265
266                         <div class=page id=pg_archive_courses>
267                                 <h1>Archived Courses</h1>
268                                 <ul>
269                                         <li class=proto id=PROTO_archive_course>
270                                                 <a href="/archive/course/__id__">__name__</a>
271                                         </li>
272                                 </ul>
273
274                         </div>
275
276
277
278                         <div class=page id=pg_archive_notes>
279                                 <h1>Archived Notes</h1>
280                                 <ul>
281                                         <li class=proto id=PROTO_archive_note>
282                                                 <a href="/archive/note/___id__">__topic__</a>
283                                         </li>
284                                 </ul>
285                         </div>
286
287
288
289                         <div class=page id=pg_archive_note_display>
290                                 <div id=PROTO_archive_note_display>
291                                         <h1>__topic__</h1>
292                                         <div>__text__</div>
293                                 </div>
294                         </div>
295
296
297
298                         <div class=page id=pg_register>
299                                 <h1>Create an Account</h1>
300                                 <form id="form_register" action="/register" method="POST">
301                                         <div class="zarea">
302                                                 <div class="row">
303                                                         <div class="label">
304                                                                 <label for="email">Email</label>
305                                                         </div>
306                                                         <div class="field">
307                                                                 <input type="text" name="email">
308                                                         </div>
309                                                 </div>
310                                                 <div class="row">
311                                                         <div class="label">
312                                                                 <label for="password">Password</label>
313                                                         </div>
314                                                         <div class="field">
315                                                                 <input type="password" name="password">
316                                                         </div>
317                                                 </div>
318                                                 <div class="row">
319                                                         <div class="label">
320                                                                 <label for="school">School</label>
321                                                         </div>
322                                                         <div class="field">
323                                                                 <select name="school">
324                                                                         <option value="Berkeley">Berkeley</option>
325                                                                         <option value="Brown">Brown</option>
326                                                                         <option value="Columbia">Columbia</option>
327                                                                         <option value="Cornell">Cornell</option>
328                                                                         <option value="Dartmouth">Dartmouth</option>
329                                                                         <option value="Harvard">Harvard</option>
330                                                                         <option value="MIT">MIT</option>
331                                                                         <option value="Princeton">Princeton</option>
332                                                                         <option value="Stanford">Stanford</option>
333                                                                         <option value="UPenn">UPenn</option>
334                                                                         <option value="University of Texas">University of Texas</option>
335                                                                         <option value="Yale">Yale</option>
336                                                                         <option value="Other">Other</option>
337                                                                 </select>
338                                                         </div>
339                                                 </div>
340                                                 <div class="row">
341                                                         <div class="label">
342                                                                 <label for="name">Name</label>
343                                                         </div>
344                                                         <div class="field">
345                                                                 <input type="text" name="name">
346                                                         </div>
347                                                 </div>
348                                                 <div class="row">
349                                                         <div class="label">
350                                                                 <label for="affil">Affiliation</label>
351                                                         </div>
352                                                         <div class="field">
353                                                                 <select name="affil">
354                                                                         <option value="Student">Student</option>
355                                                                         <option value="Teachers Assistant">Teachers Assistant</option>
356                                                                 </select>
357                                                         </div>
358                                                 </div>
359                                                 <div class="row">
360                                                         <div class="label">
361                                                                 &nbsp;
362                                                         </div>
363                                                         <div class="field">
364                                                                 <button>Register</button>
365                                                         </div>
366                                                 </div>
367                                         </div>
368                                 </form>
369                         </div>
370
371       <div class="page" id="pg_profile">
372         <h1>User Profile</h1>
373         <form id="form_profile" action="/profile" method="POST">
374           <h2>Account Information</h2>
375           <div class="area">
376             <div class="row">
377               <div class="label">
378                 <span>Email</span>
379               </div>
380               <div class="field">
381                 <span class="email"></span>
382               </div>
383             </div>
384             <div class="row">
385               <div class="label">
386                 <label for="affiliation">Affiliation</label>
387               </div>
388               <div class="field">
389                 <select id="affiliation" name="affiliation">
390                   <option value="Student">Student</option>
391                   <option value="Teachers Assistant">Teachers Assistant</option>
392                 </select>
393               </div>
394             </div>
395           </div>
396           <h2>Profile Information</h2>
397           <div class="area">
398             <div class="row">
399               <div class="label">
400                 <label for="name">User Name</label>
401               </div>
402               <div class="field">
403                 <input id="name" type="text" name="name" value="">
404               </div>
405             </div>
406             <div class="row">
407               <div class="label">
408                 <label>&nbsp;</label>
409               </div>
410               <div class="field">
411                 <input style="width: auto;" id="showName" type="checkbox" name="showName">
412                 Display your real name in contributions
413               </div>
414             </div>
415               <!--
416             <div class="row">
417               <div class="label">
418                 <label for="major">Major</label>
419               </div>
420               <div class="field">
421                 <input id="major" type="text" name="major" value="">
422               </div>
423             </div>
424             <div class="row">
425               <div class="label">
426                 <label for="bio">Bio</label>
427               </div>
428               <div class="field">
429                 <input id="bio" type="text" name="bio" value="">
430               </div>
431             </div>
432             -->
433           </div>
434           <h2>Change Password</h2>
435           <div class="area">
436             <div class="row">
437               <div class="label">
438                 <label for="existingPassword">Old Password</label>
439               </div>
440               <div class="field">
441                 <input id="existingPassword" type="password" name="existingPassword">
442               </div>
443             </div>
444             <div class="row">
445               <div class="label">
446                 <label for="newPassword">New Password</label>
447               </div>
448               <div class="field">
449                 <input id="newPassword" type="password" name="newPassword">
450               </div>
451             </div>
452             <div class="row">
453               <div class="label">
454                 <label for="newPasswordConfirm">Confirm Password</label>
455               </div>
456               <div class="field">
457                 <input id="newPasswordConfirm" type="password" name="newPasswordConfirm">
458               </div>
459             </div>
460           </div>
461           <div class="row">
462             <div class="label">&nbsp;</div>
463             <div class="field">
464               <button>Submit</button>
465             </div>
466           </div>
467         </form>
468       </div>
469
470
471                         <div class=page id=pg_login>
472                                 <h1>Login</h1>
473                                 <form id="form_login" action="/login" method="POST">
474                                         <div class="zarea">
475                                                 <div class="row">
476                                                         <div class="label">
477                                                                 <label for="email">Email</label>
478                                                         </div>
479                                                         <div class="field">
480                                                                 <input type="text" name="email" size="15" value="joe@sleepless.com">
481                                                         </div>
482                                                 </div>
483                                                 <div class="row">
484                                                         <div class="label">
485                                                                 <label for="password">Password</label>
486                                                         </div>
487                                                         <div class="field">
488                                                                 <input type="password" name="password" size="15">
489                                                         </div>
490                                                 </div>
491                                                 <div class="row">
492                                                         <div class="label">&nbsp;
493                                                         </div>
494                                                         <div class="field">
495                                                                 <button class="major">Login</button>
496                                                                 <span class="reglink">
497                                                                         <a href="/resetpass">Forgot password?</a>
498                                                                 </span>
499                                                         </div>
500                                                 </div>
501                                                 <div class="row">
502                                                         <div class="label">&nbsp;
503                                                         </div>
504                                                         <div class="field">
505                                                                 <span class="reglink">
506                                                                         <a href="/register">Create an Account</a>
507                                                                 </span>
508                                                         </div>
509                                                 </div>
510                                         </div>
511                                 </form>
512                         </div>
513
514       <div class="page" id="pg_resetpass">
515         <h1>Password Reset</h1>
516         <form id="form_resetpass" action="/resetpass" method="POST">
517           <div class="zarea">
518             <p>To reset your password, enter your email address click "Reset". An email will be sent to you with a link to reset your password.</p>
519             <div class="row">
520               <div class="label">
521                 <label for="email">Email</label>
522               </div>
523               <div class="field">
524                 <input type="text" name="email" size="15" value="">
525               </div>
526             </div>
527             <div class="row">
528               <div class="label">&nbsp;</div>
529               <div style="min-width: 200px" class="field">
530                 <button>Reset</button>
531               </div>
532             </div>
533           </div>
534         </form>
535       </div>
536
537       <div class="page" id="pg_resetpw">
538         <h1>Password Reset</h1>
539         <form id="form_resetpw" action="/resetpw" method="POST">
540           <div class="zarea">
541             <p>To verify and reset your password, type the full email address and your new password twice, then click submit.</p>
542             <div class="row">
543               <div class="label">
544                 <label for="email">Email</label>
545               </div>
546               <div class="field">
547                 <input type="text" name="email" size="15" value="">
548               </div>
549             </div>
550             <div class="row">
551               <div class="label">
552                 <label for="pass1">New Password</label>
553               </div>
554               <div class="field">
555                 <input type="password" name="pass1" size="15" value="">
556               </div>
557             </div>
558             <div class="row">
559               <div class="label">
560                 <label for="pass2">Repeat New Password</label>
561               </div>
562               <div class="field">
563                 <input type="password" name="pass2" size="15" value="">
564               </div>
565             </div>
566             <div class="row">
567               <div class="label">&nbsp;</div>
568               <div style="min-width: 200px" class="field">
569                 <button>Reset</button>
570               </div>
571             </div>
572           </div>
573         </form>
574       </div>
575
576                         <div class=page id=pg_conduct>
577                                 <div class="conduct">
578                                         <h1>Code of Conduct</h1>
579                                         <p class="academic">
580                                                 <img src="/images/keep-it-academic.png" alt="Keep it academic.">
581                                         </p>
582                                         <p class="vague">
583                                                 This directive is deliberately vague to
584                                                 accommodate creative humor, insight, and exploration.<br>
585                                                 Disruptive or irrelevant material, however,
586                                                 will be subject to removal.<br>
587                                                 Just keep it academic, and we'll all be better off.<br>
588                                         </p>
589                                 </div>
590                         </div>
591
592
593
594
595                         <div class=page id=pg_press>
596                                 <h1>FinalsClub in the Press</h1>
597                                 <div class="press">
598                                         <img src="/images/boston.com.png" class="press">
599                                         <p class="date">December 13, 2009</p>
600                                         <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>
601                                         <p>Then, two years ago, Magliozzi started up a side project called Finalsclub.org.</p>
602                                         <p class="readmore">
603                                         <a href="http://www.boston.com/bostonglobe/ideas/articles/2009/12/13/freeharvardeducationcom">Read more ...</a>
604                                         </p>
605                                 </div>
606                                 <hr>
607                                 <div class="press">
608                                         <img src="/images/harvard-crimson.jpg" class="press">
609                                         <p class="date">Wednesday, February 18, 2009</p>
610                                         <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>
611                                         <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>
612                                         <p class="readmore">
613                                         <a href="http://www.thecrimson.com/article/2009/2/18/finalscluborg-passes-punch-span-stylefont-weight-boldcorrection">Read more ...</a>
614                                         </p>
615                                 </div>
616                                 <hr>
617                                 <div class="press">
618                                         <img src="/images/blown-to-bits.png" class="press">
619                                         <p class="date">September 27th, 2009</p>
620                                         <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>
621                                         <p class="readmore">
622                                         <a href="http://www.bitsbook.com/2009/09/a-harvard-skirmish-in-the-copyright-wars">Read more ...</a>
623                                         </p>
624                                 </div>
625                         </div>
626
627
628
629
630                         <div class=page id=pg_notfound>
631                                 <h1>Page Not Found</h1>
632                                 Sorry, there is no content for this page.
633                         </div>
634
635
636
637
638                 </div>
639
640
641
642
643                 <div class="footer">
644                         <table>
645                                 <tr>
646                                         <td class="col1">
647                                                 <div class="logo">
648                                                         <img src="/images/finals-club-wht.png" title="FinalsClub.org" class="lilogo"/>
649                                                 </div>
650                                                 <div>Copyright 2011</div>
651                                                 <div>All Rights Reserved</div>
652                                         </td>
653                                         <td class="col2">
654                                                 <a href="/conduct">Code of Conduct</a>
655                                                 <a href="http://blog.finalsclub.org/about.html">About</a>
656                                                 <a href="http://blog.finalsclub.org/contact.html">Contact</a>
657                                                 <a href="http://blog.finalsclub.org/legal.html">Legal</a>
658                                                 <a href="http://blog.finalsclub.org/team.html">Team</a>
659                                         </td>
660                                 </tr>
661                         </table>
662                 </div>
663                 <div class="footerer">
664                         <p>
665                                 This work is licensed under a
666                                 Creative Commons Attribution-ShareAlike 3.0
667                                 United States License
668                         </p>
669                         <p>
670                                 <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>
671                                 <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>
672                         </p>
673                 </div>
674
675
676
677
678         </body>
679 </html>