Commit 35c5de81 by Galen Frechette

cleans up home page header design, adds social sharing to header, adds tos,…

cleans up home page header design, adds social sharing to header, adds tos, privacy policy, honor code, help and copyright pages, add liks to those pages in footer, finished contact page
parent 1ea8bd26
...@@ -13,6 +13,7 @@ valid_templates=['index.html', ...@@ -13,6 +13,7 @@ valid_templates=['index.html',
'tos.html', 'tos.html',
'privacy.html', 'privacy.html',
'honor.html', 'honor.html',
'help.html',
'copyright.html', 'copyright.html',
'404.html', '404.html',
'mitx_help.html', 'mitx_help.html',
...@@ -20,10 +21,9 @@ valid_templates=['index.html', ...@@ -20,10 +21,9 @@ valid_templates=['index.html',
'about.html', 'about.html',
'faq.html', 'faq.html',
'press.html', 'press.html',
'contact.html', 'contact.html']
'terms_and_conditions.html']
if settings.STATIC_GRAB: if settings.STATIC_GRAB:
valid_templates = valid_templates+['server-down.html', valid_templates = valid_templates+['server-down.html',
'server-error.html' 'server-error.html'
'server-overloaded.html', 'server-overloaded.html',
...@@ -33,7 +33,7 @@ if settings.STATIC_GRAB: ...@@ -33,7 +33,7 @@ if settings.STATIC_GRAB:
'6002x-press-release.html' '6002x-press-release.html'
] ]
def index(request, template): def index(request, template):
csrf_token = csrf(request)['csrf_token'] csrf_token = csrf(request)['csrf_token']
if template in valid_templates: if template in valid_templates:
return render_to_response(template, {'error' : '', return render_to_response(template, {'error' : '',
...@@ -43,7 +43,7 @@ def index(request, template): ...@@ -43,7 +43,7 @@ def index(request, template):
valid_auth_templates=['help.html'] valid_auth_templates=['help.html']
def auth_index(request, template): def auth_index(request, template):
if not request.user.is_authenticated(): if not request.user.is_authenticated():
return redirect('/') return redirect('/')
......
...@@ -194,14 +194,32 @@ ...@@ -194,14 +194,32 @@
.map { .map {
background: rgb(245,245,245); background: rgb(245,245,245);
float: left; float: left;
height: 180px; height: 280px;
margin-right: flex-gutter(); margin-right: flex-gutter();
overflow: hidden;
width: flex-grid(6); width: flex-grid(6);
img {
min-height: 100%;
max-width: 100%;
}
} }
.address { .contacts {
@include box-sizing(border-box);
float: left; float: left;
padding-left: 40px;
width: flex-grid(6); width: flex-grid(6);
ul {
list-style: none;
margin: 0px;
padding: 0px;
li {
margin-bottom: 10px;
}
}
} }
} }
} }
...@@ -43,19 +43,17 @@ h2 { ...@@ -43,19 +43,17 @@ h2 {
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
} }
p + h2, ul + h2, ol + h2 {
margin-top: 40px;
}
p { p {
color: $base-font-color; color: $base-font-color;
font: normal 1.3rem/2rem $serif; font: normal 1.3rem/2rem $serif;
margin: 0px; margin: 0px;
} }
span { p + p, ul + p, ol + p {
color: $lighter-base-font-color;
font: normal 1.3rem/2rem $sans-serif;
margin: 0px;
}
p + p {
margin-top: 20px; margin-top: 20px;
} }
...@@ -96,3 +94,42 @@ a:link, a:visited { ...@@ -96,3 +94,42 @@ a:link, a:visited {
max-width: 1200px; max-width: 1200px;
width: flex-grid(12); width: flex-grid(12);
} }
.static-container {
@include clearfix;
margin: 0 auto 0;
max-width: 1200px;
padding: 60px 0px 120px;
width: flex-grid(12);
.inner-wrapper {
margin: 0 auto 0;
width: flex-grid(10);
}
ol, ul {
list-style: disc;
li {
color: $base-font-color;
font: normal 1.3rem/2rem $serif;
margin: 0px;
}
}
h1 {
margin-bottom: 30px;
}
h1 + hr {
margin-bottom: 60px;
}
p + h2, ul + h2, ol + h2 {
margin-top: 40px;
}
ul + p, ol + p {
margin-top: 20px;
}
}
// home-header-pop-up animation
//************************************************************************//
.animation-home-header-pop-up {
@include animation(home-header-pop-up 1.25s ease-in-out);
@include animation-fill-mode(both);
@include animation-delay(1s);
}
@mixin home-header-pop-up-keyframes {
0% {
//opacity: 0;
top: 300px;
//@include transform(scale(0.9));
}
65% {
//opacity: 1;
top: -40px;
//@include transform(scale(1));
}
85% {
top: 10px;
}
100% {
top: 0px;
}
}
@-webkit-keyframes home-header-pop-up { @include home-header-pop-up-keyframes; }
@-moz-keyframes home-header-pop-up { @include home-header-pop-up-keyframes; }
@keyframes home-header-pop-up { @include home-header-pop-up-keyframes; }
// title appear animation // title appear animation
//************************************************************************// //************************************************************************//
......
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
background: rgb(245,245,245); background: rgb(245,245,245);
@include background-image(url('/static/images/shot-2-large.jpg')); @include background-image(url('/static/images/shot-2-large.jpg'));
background-size: cover; background-size: cover;
//@include background-image(linear-gradient(-90deg, rgb(230,230,230), rgb(245,245,245)));
@include box-shadow(0 1px 80px 0 rgba(0,0,0, 0.5)); @include box-shadow(0 1px 80px 0 rgba(0,0,0, 0.5));
border-bottom: 1px solid rgb(100,100,100); border-bottom: 1px solid rgb(100,100,100);
@include box-shadow(inset 0 1px 5px 0 rgba(0,0,0, 0.1)); @include box-shadow(inset 0 1px 5px 0 rgba(0,0,0, 0.1));
...@@ -122,6 +121,7 @@ ...@@ -122,6 +121,7 @@
} }
.media { .media {
background: #fff;
border-left: 1px solid rgb(100,100,100); border-left: 1px solid rgb(100,100,100);
@include box-sizing(border-box); @include box-sizing(border-box);
float: right; float: right;
...@@ -163,7 +163,8 @@ ...@@ -163,7 +163,8 @@
} }
img { img {
min-width: 100%; display: block;
width: 100%;
} }
} }
......
...@@ -64,30 +64,41 @@ ...@@ -64,30 +64,41 @@
margin: 0px; margin: 0px;
width: flex-grid(9); width: flex-grid(9);
> header {
border-bottom: 1px solid rgb(210,210,210);
margin-bottom: 40px;
}
.empty-dashboard-message { .empty-dashboard-message {
border-top: 1px solid rgb(210,210,210);
padding: 80px 0px; padding: 80px 0px;
text-align: center; text-align: center;
p { p {
color: $lighter-base-font-color; color: $lighter-base-font-color;
font-style: italic; font-style: italic;
margin-bottom: 20px;
text-shadow: 0 1px rgba(255,255,255, 0.6); text-shadow: 0 1px rgba(255,255,255, 0.6);
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
}
a { a {
background: rgb(240,240,240); background: rgb(240,240,240);
@include background-image(linear-gradient(-90deg, rgb(245,245,245) 0%, rgb(243,243,243) 50%, rgb(237,237,237) 50%, rgb(235,235,235) 100%)); @include background-image(linear-gradient(-90deg, rgb(245,245,245) 0%, rgb(243,243,243) 50%, rgb(237,237,237) 50%, rgb(235,235,235) 100%));
border: 1px solid rgb(220,220,220); border: 1px solid rgb(220,220,220);
@include border-radius(4px); @include border-radius(4px);
@include box-shadow(0 1px 8px 0 rgba(0,0,0, 0.1)); @include box-shadow(0 1px 8px 0 rgba(0,0,0, 0.1));
@include box-sizing(border-box); @include box-sizing(border-box);
color: $base-font-color; color: $base-font-color;
font: 300 1.2rem/1.6rem $sans-serif; font: 300 1.2rem/1.6rem $sans-serif;
@include inline-block; @include inline-block;
margin-left: 5px; letter-spacing: 1px;
padding: 5px 10px; margin-left: 5px;
text-shadow: 0 1px rgba(255,255,255, 0.6); padding: 5px 10px;
text-shadow: 0 1px rgba(255,255,255, 0.6);
&:hover {
color: $blue;
//text-decoration: none;
} }
} }
} }
...@@ -179,7 +190,6 @@ ...@@ -179,7 +190,6 @@
> hgroup { > hgroup {
border-bottom: 1px solid rgb(210,210,210); border-bottom: 1px solid rgb(210,210,210);
@include box-shadow(0 1px 0 0 rgba(255,255,255, 0.6)); @include box-shadow(0 1px 0 0 rgba(255,255,255, 0.6));
margin-bottom: 20px;
padding: 15px 0px; padding: 15px 0px;
width: 100%; width: 100%;
...@@ -223,12 +233,35 @@ ...@@ -223,12 +233,35 @@
} }
} }
.course-status {
background: rgb(250,250,250);
border: 1px solid rgb(200,200,200);
@include box-shadow(0 1px 0 0 rgba(255,255,255, 0.6));
margin-top: 14px;
padding: 5px;
p {
color: $lighter-base-font-color;
font: italic 300 1.2rem/1.4rem $sans-serif;
letter-spacing: 1px;
text-align: center;
text-transform: uppercase;
span {
color: $base-font-color;
font: italic 800 1.2rem/1.6rem $sans-serif;
}
}
}
.meta { .meta {
@include clearfix; @include clearfix;
margin-top: 19px;
position: relative; position: relative;
@include transition(opacity, 0.15s, linear); @include transition(opacity, 0.15s, linear);
width: 100%; width: 100%;
.course-work-icon { .course-work-icon {
background: rgb(200,200,200); background: rgb(200,200,200);
float: left; float: left;
......
...@@ -2,44 +2,274 @@ ...@@ -2,44 +2,274 @@
padding: 0px 0px 100px; padding: 0px 0px 100px;
> header { > header {
//background: rgb(250,250,250); background: rgb(255,255,255);
@include background-image(url('/static/images/shot-5-large.jpg')); @include background-image(url('/static/images/shot-2-large.jpg'));
background-size: cover; background-size: cover;
border-bottom: 1px solid rgb(80,80,80); border-bottom: 1px solid rgb(80,80,80);
@include box-shadow(0 1px 0 0 rgba(255,255,255, 0.9), inset 0 -1px 5px 0 rgba(0,0,0, 0.1)); @include box-shadow(0 1px 0 0 rgba(255,255,255, 0.9), inset 0 -1px 5px 0 rgba(0,0,0, 0.1));
@include clearfix; @include clearfix;
margin-top: -69px; margin-top: -69px;
min-height: 300px; overflow: hidden;
padding: 129px 0px 50px; padding: 149px 0px 90px;
width: flex-grid(12); width: flex-grid(12);
.inner-wrapper { .outer-wrapper {
@extend .animation-home-header-pop-up;
max-width: 1200px; max-width: 1200px;
margin: 0 auto; margin: 0 auto;
position: relative; position: relative;
text-align: center;
&:hover {
.main-cta {
@include box-shadow(0 1px 16px 0 rgba($blue, 0.35));
}
}
} }
h1 { .inner-wrapper {
color: rgb(255,255,255); background: rgba(255,255,255, 0.9);
border: 1px solid rgb(100,100,100);
@include box-shadow(0 4px 25px 0 rgba(0,0,0, 0.5));
@include inline-block;
padding: 30px 50px 30px;
position: relative;
text-align: center; text-align: center;
z-index: 1;
}
.title {
@include inline-block;
margin-right: 50px;
padding-right: 50px;
position: relative;
text-align: left;
vertical-align: middle;
&::after {
@extend .faded-vertical-divider;
content: "";
display: block;
height: 170px;
position: absolute;
right: 0px;
top: -20px;
}
h1 {
border-bottom: 1px solid rgb(200,200,200);
margin-bottom: 25px;
padding-bottom: 15px;
text-align: left;
text-shadow: 0 1px rgba(255,255,255, 0.6);
}
p {
color: $lighter-base-font-color;
display: none;
font-style: italic;
letter-spacing: 2px;
margin-bottom: 30px;
text-shadow: 0 1px rgba(255,255,255, 0.6);
text-transform: lowercase;
}
.main-cta {
@include clearfix;
float: left;
margin-right: flex-gutter();
@include transition(all, 0.15s, linear);
width: flex-grid(6);
> a.find-courses {
@include button(shiny, $blue);
@include box-sizing(border-box);
@include border-radius(3px);
display: block;
font: italic 1.4rem/1.6rem $serif;
letter-spacing: 1px;
padding: 12px 0px;
text-transform: uppercase;
text-align: center;
-webkit-font-smoothing: antialiased;
width: flex-grid(12);
&:hover {
color: rgb(255,255,255);
}
}
}
.social-sharing {
@include box-sizing(border-box);
float: left;
height: 44px;
position: relative;
text-align: center;
width: flex-grid(6);
&:hover {
.sharing-message {
opacity: 1;
top: 63px;
}
}
.sharing-message {
@include background-image(linear-gradient(-90deg, rgba(0,0,0, 0.9) 0%,
rgba(0,0,0, 0.7) 100%));
border: 1px solid rgba(0,0,0, 0.5);
@include border-radius(4px);
@include box-shadow(0 4px 25px 0 rgba(0,0,0, 0.5));
@include box-sizing(border-box);
color: rgb(255,255,255);
float: right;
font: italic 1.2rem/1.6rem $serif;
left: 50%;
margin-left: -110px;
opacity: 0;
padding: 5px 10px;
position: absolute;
text-align: center;
@include transition(all, 0.15s, ease-out);
top: 73px;
width: 220px;
&::before {
background: transparent;
border: {
top: 6px solid rgba(0,0,0, 1);
right: 6px solid rgba(0,0,0, 1);
bottom: 6px solid transparent;
left: 6px solid transparent;
}
@include box-shadow(1px 0 0 0 rgb(0,0,0), 0 -1px 0 0 rgb(0,0,0));
content: "";
display: block;
height: 0px;
left: 50%;
margin-left: -7px;
position: absolute;
@include transform(rotate(-45deg));
top: -6px;
width: 0px;
}
}
.share {
height: 44px;
@include inline-block;
margin-right: 10px;
opacity: 0.5;
@include transition(all, 0.15s, linear);
width: 44px;
&:hover {
opacity: 1;
}
img {
width: 100%;
}
&:last-child {
margin-right: 0px;
}
}
}
} }
a { .media {
@include button(shiny, $blue); background: #fff;
border: 1px solid rgb(200,200,200);
@include box-sizing(border-box); @include box-sizing(border-box);
@include border-radius(3px); @include inline-block;
display: block; padding: 1px;
font: italic 1.4rem/1.6rem $serif; position: relative;
vertical-align: middle;
width: 210px;
z-index: 2;
.hero {
height: 125px;
overflow: hidden;
position: relative;
.play-intro {
@include background-image(linear-gradient(-90deg, rgba(255,255,255, 0.6), rgba(255,255,255, 0.4)));
@include border-radius(4px);
@include box-shadow(0 1px 10px 0 rgba(0,0,0, 0.2));
border: 1px solid rgba(0,0,0, 0.3);
height: 80px;
left: 50%;
margin-top: -40px;
margin-left: -40px;
position: absolute;
top: 50%;
width: 80px;
&::after {
color: $base-font-color;
content: "\25B6";
display: block;
font: normal 3.2rem/3.2rem $sans-serif;
left: 50%;
margin-left: -12px;
margin-top: -17px;
position: absolute;
text-shadow: 0 1px rgba(255,255,255, 0.8);
top: 50%;
}
}
img {
display: block;
width: 100%;
}
}
&:hover {
cursor: pointer;
.play-intro {
@include background-image(linear-gradient(-90deg, rgba(255,255,255, 0.7), rgba(255,255,255, 0.5)));
@include box-shadow(0 1px 10px 0 rgba(0,0,0, 0.2));
border: 1px solid rgba(0,0,0, 0.4);
&::after {
color: $pink;
}
}
}
}
}
.highlighted-courses {
border-bottom: 1px solid rgb(210,210,210);
@include box-sizing(border-box);
margin-bottom: 60px;
position: relative;
width: flex-grid(12);
z-index: 1;
> h2 {
@include background-image(linear-gradient(-90deg, rgb(250,250,250), rgb(230,230,230)));
border: 1px solid rgb(200,200,200);
@include border-radius(4px);
border-top-color: rgb(190,190,190);
@include box-shadow(inset 0 0 0 1px rgba(255,255,255, 0.4), 0 0px 12px 0 rgba(0,0,0, 0.2));
color: $lighter-base-font-color;
letter-spacing: 1px; letter-spacing: 1px;
margin: 0 auto; margin-bottom: 0px;
padding: 15px 0px; margin-top: -15px;
text-transform: uppercase; padding: 15px 10px;
text-align: center; text-align: center;
-webkit-font-smoothing: antialiased; text-transform: uppercase;
width: flex-grid(3); text-shadow: 0 1px rgba(255,255,255, 0.6);
&:hover { .lowercase {
color: rgb(255,255,255); color: $lighter-base-font-color;
text-transform: none;
} }
} }
} }
...@@ -176,34 +406,6 @@ ...@@ -176,34 +406,6 @@
} }
} }
.highlighted-courses {
border-bottom: 1px solid rgb(210,210,210);
@include box-sizing(border-box);
margin-bottom: 60px;
width: flex-grid(12);
> h2 {
@include background-image(linear-gradient(-90deg, rgb(250,250,250), rgb(230,230,230)));
border: 1px solid rgb(200,200,200);
@include border-radius(4px);
border-top-color: rgb(190,190,190);
@include box-shadow(inset 0 0 0 1px rgba(255,255,255, 0.4), 0 0px 12px 0 rgba(0,0,0, 0.2));
color: $lighter-base-font-color;
letter-spacing: 1px;
margin-bottom: 0px;
margin-top: -15px;
padding: 15px 10px;
text-align: center;
text-transform: uppercase;
text-shadow: 0 1px rgba(255,255,255, 0.6);
.lowercase {
color: $lighter-base-font-color;
text-transform: none;
}
}
}
.more-info { .more-info {
margin-bottom: 60px; margin-bottom: 60px;
width: flex-grid(12); width: flex-grid(12);
......
...@@ -3,7 +3,6 @@ footer { ...@@ -3,7 +3,6 @@ footer {
border-top: 1px solid rgb(200,200,200); border-top: 1px solid rgb(200,200,200);
@include box-shadow(inset 0 1px 3px 0 rgba(0,0,0, 0.1)); @include box-shadow(inset 0 1px 3px 0 rgba(0,0,0, 0.1));
margin: 0 auto; margin: 0 auto;
padding: 0 0 40px;
width: flex-grid(12); width: flex-grid(12);
&.fixed-bottom { &.fixed-bottom {
...@@ -14,12 +13,28 @@ footer { ...@@ -14,12 +13,28 @@ footer {
nav { nav {
@include box-sizing(border-box); @include box-sizing(border-box);
@include clearfix;
max-width: 1200px; max-width: 1200px;
margin: 0 auto; margin: 0 auto;
padding: 20px 10px 0; padding: 20px 10px 0;
width: flex-grid(12); width: flex-grid(12);
.primary-links {
@include clearfix;
margin-bottom: 30px;
}
.secondary-links {
padding-bottom: 10px;
text-align: left;
a {
color: $lighter-base-font-color;
font: 300 1.2rem/1.6rem $sans-serif;
letter-spacing: 1px;
margin-right: 20px;
}
}
.copyright { .copyright {
float: left; float: left;
padding-top: 2px; padding-top: 2px;
......
...@@ -27,9 +27,9 @@ ...@@ -27,9 +27,9 @@
<div class="photo"> <div class="photo">
<img src=""> <img src="">
</div> </div>
<h2>What it's like to work here</h2> <h2>Mission: Educate 1 billion people around the world</h2>
<p>Harvard and MIT will use these new technologies and the research they will make possible to lead the direction of online learning in a way that benefits our students, our peers, and people across the nation and the globe,” Faust continued.</p> <p>EdX represents a unique opportunity to improve education on our own campuses through online learning, while simultaneously creating a bold new educational path for millions of learners worldwide,” MIT President Susan Hockfield said.</p>
<p>[fast-moving not-for-profit startup][institutional backing, funding, benefits, and stability][industry salaries]</p> <p>Harvard President Drew Faust said, “edX gives Harvard and MIT an unprecedented opportunity to dramatically extend our collective reach by conducting groundbreaking research into effective education and by extending online access to quality higher education.”
<hr class="fade-left-hr-divider"> <hr class="fade-left-hr-divider">
</section> </section>
......
...@@ -12,15 +12,22 @@ ...@@ -12,15 +12,22 @@
<section class="contact"> <section class="contact">
<div class="map"> <div class="map">
<img src="${static.url('images/edx-location.png')}">
</div> </div>
<div class="address"> <div class="contacts">
Suggest a Feature <h2>Email Contacts</h2>
Suggest a Topic <ul>
Report a Problem <li><p>System-related questions: <a href="mailto:technical@mitx.mit.edu">technical@mitx.mit.edu</a></p></li>
Ask the Community <li><p>Content-related questions: <a href="mailto:content@mitx.mit.edu">content@mitx.mit.edu</a></p></li>
Send Thanks <li><p>Bug reports: <a href="mailto:bugs@mitx.mit.edu">bugs@mitx.mit.edu</a></p></li>
Submit a Comment <li><p>Suggestions: <a href="mailto:suggestions@mitx.mit.edu">suggestions@mitx.mit.edu</a></p></li>
Mailing Address </ul>
<h2>Physical Address</h2>
<ul>
<li><p>11 Cambridge Center</p></li>
<li><p>Cambridge, MA 02142</p></li>
</ul>
</div> </div>
</section> </section>
</section> </section>
......
<%inherit file="marketing.html" /> <%! from django.core.urlresolvers import reverse %>
<%inherit file="main.html" />
<section class="copyright"> <%namespace name='static' file='static_content.html'/>
<div> <section class="static-container copyright">
<h1> Licensing Information </h1> <h1> Licensing Information </h1>
<hr class="horizontal-divider">
<ul> <div class="inner-wrapper">
<li> <h2>Videos and Exercises</h2>
<h2>Videos and Exercises</h2> <p> Copyright &copy; 2012 MIT. All rights reserved. In order to further MIT's goal of making education accessible and affordable to the world, MIT is planning to make <i>MITx</i> course content available under open source licenses.</p>
<p> Copyright &copy; 2012 MIT. All rights reserved. In order to
further MIT's goal of making education accessible and affordable
to the world, MIT is planning to make <i>MITx</i> course content
available under open source licenses.
</p>
</li>
<li> <h2>Textbook</h2>
<h2>Textbook</h2> <p> Copyright &copy; 2005 Elsevier Inc. All Rights Reserved. Used with permission. While our goal is to build courses with as much free and open content as possible, we apologize that we do not have the ability to do so entirely. </p>
<p> Copyright &copy; 2005 Elsevier Inc. All Rights
Reserved. Used with permission. While our goal is to build
courses with as much free and open content as possible, we
apologize that we do not have the ability to do so
entirely. </p>
</li>
<li> <h2>Student-generated content</h2>
<h2>Student-generated content</h2> <p>Copyright &copy; 2012. All Rights Reserved. Due to privacy concerns, we do not know what portion of these will be released under open licenses.</p>
<td>Copyright &copy; 2012. All Rights Reserved. Due to privacy
concerns, we do not know what portion of these will be released
under open licenses. </td></li>
</ul>
<p>MIT and <i>MITx</i> are trademarks of the Massachusetts Institute <p>MIT and <i>MITx</i> are trademarks of the Massachusetts Institute of Technology, and may not be used without permission.</p>
of Technology, and may not be used without permission.</p>
</div> </div>
</section> </section>
...@@ -31,79 +31,41 @@ ...@@ -31,79 +31,41 @@
% if len(courses) > 0: % if len(courses) > 0:
% for course in courses: % for course in courses:
<article class="my-course"> <article class="my-course">
<a href="${reverse('info', args=[course.id])}"> <a href="${reverse('info', args=[course.id])}" class="cover" style="background-image: url('static/images/courses/python.png')">
<div class="cover"> <div class="shade"></div>
<div class="shade"></div> <div class="arrow"></div>
<div class="arrow"></div> </a>
<img src="${static.url('images/circuits.jpeg')}" /> <section class="info">
</div> <hgroup>
<section class="info"> <h3><a href="#">${course.get_about_section('university')}</a></h3>
<hgroup> <h2><a href="${reverse('info', args=[course.id])}">${course.get_about_section("title")}</a></h2>
% for instructor in course.instructors: </hgroup>
<h3>${course.get_about_section('university')}</h3> <section class="course-status">
% endfor <p>Class starts - <span>9/2/2012</span></div>
<h2>${course.get_about_section("title")}</h2> </section>
</hgroup> <section class="meta">
<section class="meta"> <div src="" class="course-work-icon"></div>
<div class="complete"> <div class="progress">
<p>60% complete</p> <div class="meter">
</div> <div class="meter-fill"></div>
<div class="progress">
<div class="meter">
<div class="meter-fill"></div>
</div>
</div>
<div class="end-date">
<p>End date: <time>6/10/12</time></p>
</div> </div>
</section> </div>
<div class="complete">
<p><span class="completeness">60%</span> compleat</p>
</div>
</section> </section>
</a> </section>
</article> </article>
% endfor % endfor
% else: % else:
<section class="empty-dashboard-message"> <section class="empty-dashboard-message">
<p>Looks like you aren't registered for any courses. You should take a minute and <a href="${reverse('courses')}" class="find-courses">Find some courses!</a></p> <p>Looks like you haven't registered for any courses yet.</p>
<a href="${reverse('courses')}">Find courses now!</a>
</section> </section>
% endif % endif
<article class="my-course">
<a href="/info" class="cover" style="background-image: url('static/images/courses/python.png')">
<div class="shade"></div>
<div class="arrow"></div>
</a>
<section class="info">
<hgroup>
<h3><a href="">HarvardX</a></h3>
<h2><a href="/info">CS 102 Python</a></h2>
</hgroup>
</section>
</article>
<article class="my-course">
<a href="/info" class="cover" style="background-image: url('static/images/courses/python.png')">
<div class="shade"></div>
<div class="arrow"></div>
</a>
<section class="info">
<hgroup>
<h3><a href="">HarvardX</a></h3>
<h2><a href="/info">CS 102 Python</a></h2>
</hgroup>
<section class="meta">
<div src="" class="course-work-icon"></div>
<div class="progress">
<div class="meter">
<div class="meter-fill"></div>
</div>
</div>
<div class="complete">
<p><span class="completeness">60%</span> compleat</p>
</div>
</section>
</section>
</article>
</section> </section>
</section> </section>
...@@ -3,28 +3,36 @@ ...@@ -3,28 +3,36 @@
<footer> <footer>
<nav> <nav>
<section class="copyright"> <section class="primary-links">
<a href="${reverse('root')}" class="logo"></a> <section class="copyright">
<p>&copy; 2012 edX, <a href="#">some rights reserved.</a></p> <a href="${reverse('root')}" class="logo"></a>
<p>&copy; 2012 edX, <a href="/t/copyright.html">some rights reserved.</a></p>
</section>
<ol>
<li>
<a href="${reverse('courses')}">Find Courses</a>
</li>
<li>
<a href="/t/about.html">About</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="/t/jobs.html">Jobs</a>
</li>
<li class="social">
<a href="#"><img src="${static.url('images/linkedin.png')}" /></a>
<a href="#"><img src="${static.url('images/facebook.png')}" /></a>
<a href="#"><img src="${static.url('images/twitter.png')}" /></a>
</li>
</ol>
</section>
<section class="secondary-links">
<a href="/t/tos.html">Terms of Service</a>
<a href="/t/privacy.html">Privacy Policy</a>
<a href="/t/honor.html">Honor Code</a>
<a href="/t/help.html">Help</a>
</section> </section>
<ol>
<li>
<a href="${reverse('courses')}">Find Courses</a>
</li>
<li>
<a href="${reverse('about_edx')}">About</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="${reverse('jobs')}">Jobs</a>
</li>
<li class="social">
<a href="#"><img src="${static.url('images/linkedin.png')}" /></a>
<a href="#"><img src="${static.url('images/facebook.png')}" /></a>
<a href="#"><img src="${static.url('images/twitter.png')}" /></a>
</li>
</ol>
</nav> </nav>
</footer> </footer>
<%! from django.core.urlresolvers import reverse %>
<%inherit file="main.html" /> <%inherit file="main.html" />
<%namespace name='static' file='static_content.html'/>
<%block name="title"><title>Help - MITx 6.002x</title></%block> <%block name="title"><title>Help - MITx 6.002x</title></%block>
<section class="help main-content"> <section class="static-container help">
<h1>Help</h1> <h1>Help</h1>
<hr class="horizontal-divider">
<section class="self-help"> <div class="inner-wrapper">
<h2>Self-help</h2> <h2>Self-help</h2>
<ul> <ul>
<li>Read <li><p>Read the <a href="/t/faq.html">FAQ</a> carefully</p></li>
the <a href="http://mitx.mit.edu/6002x-faq.html">FAQ</a> <li><p>Check the <a href="/info">course updates</a> -- we will announce major errors and issues there </p></li>
carefully</li> <li><p>Check whether the issues has been asked on the <a href="/discussion">discussion forums</a>, and if not, ask</p></li>
<li>Check the <a href="/info">course updates</a> -- we will <li><p>Ask in the IRC channel (irc.mitx.mit.edu, channel #6002)]</p></li>
announce major errors and issues there </li> <li><p>Check the <a href="/info">course handouts.</a></p></li>
<li>Check whether the issues has been asked on
the <a href="/discussion">discussion forums</a>, and if not,
ask</li>
<li>Ask in the IRC channel (irc.mitx.mit.edu, channel #6002)]</li>
<li>Check the <a href="/info">course handouts.</a></li>
</ul> </ul>
</section>
<h2>Help email</h2>
<section class="help-email"> <p> If you can't solve your problems with self-help, we have several e-mail addresses set up:</p>
<h2>Help email</h2>
<p> If you can't solve your problems with self-help, we have several <ul>
e-mail addresses set up:</p> <li><p>System-related questions: <a href="mailto:technical@mitx.mit.edu">technical@mitx.mit.edu</a></p></li>
<li><p>Content-related questions: <a href="mailto:content@mitx.mit.edu">content@mitx.mit.edu</a></p></li>
<dl> <li><p>Bug reports: <a href="mailto:bugs@mitx.mit.edu">bugs@mitx.mit.edu</a></p></li>
<dt>System-related questions</dt> <li><p>Suggestions: <a href="mailto:suggestions@mitx.mit.edu">suggestions@mitx.mit.edu</a></p></li>
<dd><a href="mailto:technical@mitx.mit.edu">technical@mitx.mit.edu</a></dd> </ul>
<dt>Content-related questions</dt>
<dd><a href="mailto:content@mitx.mit.edu">content@mitx.mit.edu</a></dd> <p>Please bear in mind that while we read them, we do not expect to have time to respond to all e-mails. For technical questions, please make sure you are using the latest version of <a href="http://www.mozilla.org/en-US/firefox/new/">Firefox</a> or <a href="https://www.google.com/chrome/">Chrome</a>, and include browser and version in your e-mail, as well as screenshots or other pertinent details.</p>
<dt>Bug reports</dt> </div>
<dd><a href="mailto:bugs@mitx.mit.edu">bugs@mitx.mit.edu</a></dd>
<dt>Suggestions</dt>
<dd><a href="mailto:suggestions@mitx.mit.edu">suggestions@mitx.mit.edu</a></dd>
</dl>
<p> Please bear in mind that while we read them, we do not
expect to have time to respond to all e-mails. For technical
questions, please make sure you are using the latest version
of <a href="http://www.mozilla.org/en-US/firefox/new/">Firefox</a>
or <a href="https://www.google.com/chrome/">Chrome</a>, and
include browser and version in your e-mail, as well as
screenshots or other pertinent details. </p>
</section>
</section> </section>
<%inherit file="marketing.html" /> <%! from django.core.urlresolvers import reverse %>
<%inherit file="main.html" />
<section class="honor-code"> <%namespace name='static' file='static_content.html'/>
<div>
<h1> Collaboration Policy </h1>
<section class="static-container honor-code">
<h1> Collaboration Policy </h1>
<hr class="horizontal-divider">
<div class="inner-wrapper">
<p> By enrolling in a course on <i>edX</i>, you are joining a <p> By enrolling in a course on <i>edX</i>, you are joining a
special worldwide community of learners. The aspiration special worldwide community of learners. The aspiration
of <i>edX</i> is to provide anyone in the world who has the of <i>edX</i> is to provide anyone in the world who has the
motivation and ability to engage edX coursework the opportunity motivation and ability to engage edX coursework the opportunity
to attain the best edX-based educational experience that to attain the best edX-based educational experience that
Internet technology enables. You are part of the community who Internet technology enables. You are part of the community who
will help <i>edX</i> achieve this goal. will help <i>edX</i> achieve this goal.</p>
<p> <i>edX</i> depends upon your motivation to learn the material <p> <i>edX</i> depends upon your motivation to learn the material
and to do so with honesty. In order to participate and to do so with honesty. In order to participate
in <i>edX</i>, you must agree to the Honor Code below and any in <i>edX</i>, you must agree to the Honor Code below and any
additional terms specific to a class. This Honor Code, and any additional terms specific to a class. This Honor Code, and any
additional terms, will be posted on each class website. additional terms, will be posted on each class website.</p>
<div style="color:darkred;"> <h2><i>edX</i> Honor Code Pledge</h2>
<h2> <i>edX</i> Honor Code Pledge</h2>
<p> By enrolling in an <i>edX</i> course, I agree that I will:</p>
<p> By enrolling in an <i>edX</i> course, I agree that I will:
<ul>
<ul> <li>
<li> Complete all mid-terms and final exams with my own work <p>Complete all mid-terms and final exams with my own work and only my own work. I will not submit the work of any other person.</p>
and only my own work. I will not submit the work of any </li>
other person. <li>
<li> Maintain only one user account and not let anyone else <p>Maintain only one user account and not let anyone else use my username and/or password.</p>
use my username and/or password. </li>
<li> Not engage in any activity that would dishonestly improve <li>
my results, or improve or hurt the results of others. <p>Not engage in any activity that would dishonestly improve my results, or improve or hurt the results of others.</p>
<li> Not post answers to problems that are being used to </li>
assess student performance. <li>
</ul> <p>Not post answers to problems that are being used to assess student performance.</p>
</div> </li>
<p> Unless otherwise indicated by the instructor of an <i>edX</i> </ul>
course, learners on <i>edX</i> are encouraged to:
<ul> <p> Unless otherwise indicated by the instructor of an <i>edX</i> course, learners on <i>edX</i> are encouraged to:</p>
<li> Collaborate with others on the lecture videos, exercises,
homework and labs. <ul>
<li> Discuss with others general concepts and materials in <li>
each course. <p>Collaborate with others on the lecture videos, exercises, homework and labs.</p>
<li> Present ideas and written work to fellow <i>edX</i> </li>
learners or others for comment or criticism. <li>
</ul> <p>Discuss with others general concepts and materials in each course.</p>
</li>
<li>
<p>Present ideas and written work to fellow <i>edX</i> learners or others for comment or criticism.</p>
</li>
</ul>
</div> </div>
</section> </section>
...@@ -4,9 +4,36 @@ ...@@ -4,9 +4,36 @@
<section class="home"> <section class="home">
<header> <header>
<div class="inner-wrapper"> <div class="outer-wrapper">
<h1>The Future of Online Education</h1> <div class="inner-wrapper">
<a href="${reverse('courses')}" class="find-courses">Find Courses</a> <div class="title">
<h1>The Future of Online Education</h1>
<p>Free. Online. World Class.</p>
<div class="main-cta">
<a href="${reverse('courses')}" class="find-courses">Find Courses</a>
</div>
<div class="social-sharing">
<div class="sharing-message">Share with friends and family!</div>
<a href="#" class="share">
<img src="${static.url('images/twitter-sharing.png')}">
</a>
<a href="#" class="share">
<img src="${static.url('images/facebook-sharing.png')}">
</a>
<a href="#" class="share">
<img src="${static.url('images/email-sharing.png')}">
</a>
</div>
</div>
<div class="media">
<div class="hero">
<img src="${static.url('images/courses/space1.jpg')}" />
<div class="play-intro"></div>
</div>
</div>
</div>
</div> </div>
</header> </header>
......
<%inherit file="marketing.html" /> <%! from django.core.urlresolvers import reverse %>
<%inherit file="main.html" />
<section class="privacy-policy">
<div> <%namespace name='static' file='static_content.html'/>
<h1>Privacy Policy</h1>
<section class="static-container privacy-policy">
<h2>Confidentiality &amp; Security of Personally <h1>Privacy Policy</h1>
Identifiable Information</h2> <hr class="horizontal-divider">
<p>We care about the confidentiality and security of your personal <div class="inner-wrapper">
information. We will use commercially reasonable efforts to keep your <h2>Confidentiality &amp; Security of Personally
Personally Identifiable Information private and will not share it with third Identifiable Information</h2>
parties, except as set forth in this Privacy Policy. However, no method of
transmitting or storing electronic data is ever completely secure, and we <p>We care about the confidentiality and security of your personal
cannot guarantee that such information will never be accessed, used, or information. We will use commercially reasonable efforts to keep your
released in a manner that is inconsistent with this policy. </p> Personally Identifiable Information private and will not share it with third
parties, except as set forth in this Privacy Policy. However, no method of
<p>This Privacy Policy only applies to information that we collect transmitting or storing electronic data is ever completely secure, and we
through the Site and does not apply to information that we may collect cannot guarantee that such information will never be accessed, used, or
from you in other ways (for example, this policy does not apply to released in a manner that is inconsistent with this policy. </p>
information that you may provide to us over the phone, by fax or
through conventional mail). In addition, please note your educational <p>This Privacy Policy only applies to information that we collect
records are protected by the Family Educational Rights and Privacy Act through the Site and does not apply to information that we may collect
(&quot;FERPA&quot;) to the extent FERPA applies.</p> from you in other ways (for example, this policy does not apply to
information that you may provide to us over the phone, by fax or
<h2>Usernames and Postings </h2> through conventional mail). In addition, please note your educational
records are protected by the Family Educational Rights and Privacy Act
<p>Comments or other information posted by you to our forums, (&quot;FERPA&quot;) to the extent FERPA applies.</p>
wikis, or other areas of the Site designed for public communications may be
viewed and downloaded by others who visit the Site. For this reason, we <h2>Usernames and Postings </h2>
encourage you to use an anonymous username, and to not post any personally
identifiable information to those forums (or other public areas).</p> <p>Comments or other information posted by you to our forums,
wikis, or other areas of the Site designed for public communications may be
<h2>What You Consent to by Using Our Site</h2> viewed and downloaded by others who visit the Site. For this reason, we
encourage you to use an anonymous username, and to not post any personally
<p>Please understand that by submitting any Personally Identifiable identifiable information to those forums (or other public areas).</p>
Information to us, you consent and agree that we may collect, use and
disclose such Personally Identifiable Information in accordance with <h2>What You Consent to by Using Our Site</h2>
this Privacy Policy and our Terms of Service (&quot;TOS&quot;), and as
permitted or required by law. If you do not agree with these terms, <p>Please understand that by submitting any Personally Identifiable
then please do not provide any Personally Identifiable Information to Information to us, you consent and agree that we may collect, use and
us. As used herein, &quot;Personally Identifiable Information&quot; disclose such Personally Identifiable Information in accordance with
means your full name, email address, your physical address (if you this Privacy Policy and our Terms of Service (&quot;TOS&quot;), and as
provide it) and your student identification number, if applicable. If permitted or required by law. If you do not agree with these terms,
you refuse, or if you choose not to provide us with any required then please do not provide any Personally Identifiable Information to
Personally Identifiable Information, we may not be able to provide you us. As used herein, &quot;Personally Identifiable Information&quot;
with the services that can be offered on our Site.</p> means your full name, email address, your physical address (if you
provide it) and your student identification number, if applicable. If
<h2>Information We Collect and How We Use It </h2> you refuse, or if you choose not to provide us with any required
Personally Identifiable Information, we may not be able to provide you
<p>We collect information, including Personally Identifiable with the services that can be offered on our Site.</p>
Information, when you sign up for a User Account, participate in
online courses, send us email messages and/or participate in our <h2>Information We Collect and How We Use It </h2>
public forums. We collect information about student performance and
patterns of learning. We track information indicating, among other <p>We collect information, including Personally Identifiable
things, which pages of our Site were visited, the order in which they Information, when you sign up for a User Account, participate in
were visited, when they were visited, and which hyperlinks and other online courses, send us email messages and/or participate in our
user interface controls were used.</p> public forums. We collect information about student performance and
patterns of learning. We track information indicating, among other
<p>We may log the IP address, operating system and browser software things, which pages of our Site were visited, the order in which they
used by each user of the Site, and we may be able to determine from an were visited, when they were visited, and which hyperlinks and other
IP address a user's Internet Service Provider and the geographic user interface controls were used.</p>
location of his or her point of connectivity. Various web analysis
tools are used to collect this information. Some of the information is <p>We may log the IP address, operating system and browser software
collected through cookies (a small text file placed on your used by each user of the Site, and we may be able to determine from an
computer). You should be able to control how and whether cookies will IP address a user's Internet Service Provider and the geographic
be accepted by your web browser. Most browsers offer instructions on location of his or her point of connectivity. Various web analysis
how to reset the browser to reject cookies in the &quot;Help&quot; tools are used to collect this information. Some of the information is
section of the toolbar. If you reject our cookies, many functions and collected through cookies (a small text file placed on your
conveniences of this Site may not work properly.</p> computer). You should be able to control how and whether cookies will
be accepted by your web browser. Most browsers offer instructions on
<p>Among other things, we may use the information that you provide how to reset the browser to reject cookies in the &quot;Help&quot;
(including your Personally Identifiable Information) in connection section of the toolbar. If you reject our cookies, many functions and
with the following:</p> conveniences of this Site may not work properly.</p>
<ul> <p>Among other things, we may use the information that you provide
<li>To help us improve <i>MITx</i> offerings, both individually (including your Personally Identifiable Information) in connection
(e.g. by course staff when working with a student) and in with the following:</p>
aggregate, and to individualize the experience and to evaluate
the access and use of the Site and the impact of <i>MITx</i> on <ul>
the worldwide educational community. <li>To help us improve <i>MITx</i> offerings, both individually
</li> (e.g. by course staff when working with a student) and in
<li>For purposes of scientific research, particularly, for aggregate, and to individualize the experience and to evaluate
example, in the areas of cognitive science and education. </li> the access and use of the Site and the impact of <i>MITx</i> on
<li>For the purpose for which you specifically provided the worldwide educational community.
the personal information, for example to respond to a specific inquiry or </li>
provide you the specific course and/or services you select. </li> <li>For purposes of scientific research, particularly, for
<li>To track both individual and aggregate attendance, example, in the areas of cognitive science and education. </li>
progress and completion of an online course, and to analyze statistics on <li>For the purpose for which you specifically provided
student performance and how students learn. </li> the personal information, for example to respond to a specific inquiry or
<li>To monitor and detect violations of the Honor Code, the provide you the specific course and/or services you select. </li>
Terms of Service, as well as other misuses and potential misuses of the <li>To track both individual and aggregate attendance,
site. </li> progress and completion of an online course, and to analyze statistics on
<li>To publish information gathered about <i>MITx</i> student performance and how students learn. </li>
access, use, impact, and student performance but only as non-personally <li>To monitor and detect violations of the Honor Code, the
identifiable data.</li> Terms of Service, as well as other misuses and potential misuses of the
<li>To send you updates about online courses offered by <i>MITx</i> site. </li>
or other MIT events or to send you email messages about Site maintenance <li>To publish information gathered about <i>MITx</i>
or updates.</li> access, use, impact, and student performance but only as non-personally
<li>To archive this information and/or use it for future identifiable data.</li>
communications with you.</li> <li>To send you updates about online courses offered by <i>MITx</i>
<li>As otherwise described to you at the point of or other MIT events or to send you email messages about Site maintenance
collection. </li> or updates.</li>
</ul> <li>To archive this information and/or use it for future
communications with you.</li>
<p> In addition to the above situations where your information may be <li>As otherwise described to you at the point of
shared with others, there is also the possibility that <i>MITx</i> collection. </li>
will affiliate with other educational institutions and/or </ul>
that <i>MITx</i> will become a (or part of a) nonprofit entity
separate from MIT. In those events, the other educational <p> In addition to the above situations where your information may be
institutions and/or separate entity will have access to the shared with others, there is also the possibility that <i>MITx</i>
information you provide, to the extent permitted by FERPA. will affiliate with other educational institutions and/or
that <i>MITx</i> will become a (or part of a) nonprofit entity
<h2>Sharing with Third Parties</h2> separate from MIT. In those events, the other educational
institutions and/or separate entity will have access to the
<p>We may share the information we collect with third parties information you provide, to the extent permitted by FERPA.</p>
as follows:</p>
<h2>Sharing with Third Parties</h2>
<ul>
<li> With service providers or <p>We may share the information we collect with third parties
contractors that perform certain functions on our behalf, including processing as follows:</p>
information that you provide to us on the Site, operating the Site or portions
of it, or in connection with other aspects of <i>MITx</i> services. These <ul>
service providers and contractors will be obligated to keep your information <li> With service providers or
confidential.</p> contractors that perform certain functions on our behalf, including processing
information that you provide to us on the Site, operating the Site or portions
<li> With all users and other visitors of it, or in connection with other aspects of <i>MITx</i> services. These
to the Site, to the extent that you submit post comments or other information service providers and contractors will be obligated to keep your information
to a portion of the Site designed for public communications. As provided in the confidential.</li>
Terms of Service, we may provide those postings to students in future offerings
of the course, either within the context of the forums, the courseware, or <li> With all users and other visitors
otherwise, for marketing purposes, or in any other way. If we do use your postings, to the Site, to the extent that you submit post comments or other information
we will use them without your real name and e-mail (except with explicit to a portion of the Site designed for public communications. As provided in the
permission), but we may use your username. </p> Terms of Service, we may provide those postings to students in future offerings
of the course, either within the context of the forums, the courseware, or
<li>To connect you to other users of the Site. For instance, we otherwise, for marketing purposes, or in any other way. If we do use your postings,
may recommend specific study partners, or connect potential student we will use them without your real name and e-mail (except with explicit
mentees and mentors. In such cases, we may use all information permission), but we may use your username. </li>
collected to determine who to connect you to, but we will only connect
you by username, and not disclose your real name or e-mail address to <li>To connect you to other users of the Site. For instance, we
your contact. </p> may recommend specific study partners, or connect potential student
mentees and mentors. In such cases, we may use all information
<li> To respond to subpoenas, court orders, or other legal process, in collected to determine who to connect you to, but we will only connect
response to a request for cooperation from law enforcement or another you by username, and not disclose your real name or e-mail address to
government agency, to investigate, prevent, or take action regarding your contact. </li>
illegal activities, suspected fraud, or to enforce our user agreement
or privacy policy, or to protect our rights or the rights of <li> To respond to subpoenas, court orders, or other legal process, in
others.</p> response to a request for cooperation from law enforcement or another
government agency, to investigate, prevent, or take action regarding
<li> As otherwise described to you at the point of collection or illegal activities, suspected fraud, or to enforce our user agreement
pursuant to your consent. For example, from time to time, we may ask or privacy policy, or to protect our rights or the rights of
your permission to use your Personally Identifiable Information in others.</li>
other ways. In the future, <i>MITx</i> may have an alumni association,
resume book, etc. We may offer services where it is possible to <li> As otherwise described to you at the point of collection or
verify <i>MITx</i> credentials. </p> pursuant to your consent. For example, from time to time, we may ask
your permission to use your Personally Identifiable Information in
<li> For integration with third party services. Videos and other other ways. In the future, <i>MITx</i> may have an alumni association,
content may be hosted on YouTube and other web sites not controlled resume book, etc. We may offer services where it is possible to
by <i>MITx</i>. We may provide links and other integration with social verify <i>MITx</i> credentials. </li>
networks, and other sites. Those web sites are guided by their own
privacy policies. </p> <li> For integration with third party services. Videos and other
</ul> content may be hosted on YouTube and other web sites not controlled
by <i>MITx</i>. We may provide links and other integration with social
<h2>Personalization and Pedagogical Improvements</h2> networks, and other sites. Those web sites are guided by their own
privacy policies. </li>
<p>Our goal is to provide current and future visitors with the best </ul>
possible educational experience. To further this goal, we sometimes
present different users with different versions of course materials <h2>Personalization and Pedagogical Improvements</h2>
and software. We do this to personalize the experience to the
individual learner (assess the learner's level of ability and learning <p>Our goal is to provide current and future visitors with the best
style, and present materials best suited to the learner), to evaluate possible educational experience. To further this goal, we sometimes
the effectiveness of our course materials, to improve our present different users with different versions of course materials
understanding of the learning process, and to otherwise improve the and software. We do this to personalize the experience to the
effectiveness of our offerings. We may publish or otherwise publicize individual learner (assess the learner's level of ability and learning
results from this process, but only as non-personally-identifiable style, and present materials best suited to the learner), to evaluate
data. </p> the effectiveness of our course materials, to improve our
understanding of the learning process, and to otherwise improve the
<h2>Changing Our Privacy Policy</h2> effectiveness of our offerings. We may publish or otherwise publicize
results from this process, but only as non-personally-identifiable
<p>Please note that we review our privacy practices from time to time, data. </p>
and that these practices are subject to change. We will publish notice
of any such modifications online on this page for a reasonable period <h2>Changing Our Privacy Policy</h2>
of time following such modifications, and by changing the effective
date of this Privacy Policy. By continuing to access the Site after <p>Please note that we review our privacy practices from time to time,
such changes have been posted, you signify your agreement to be bound and that these practices are subject to change. We will publish notice
by them. Be sure to return to this page periodically to ensure of any such modifications online on this page for a reasonable period
familiarity with the most current version of this Privacy Policy. </p> of time following such modifications, and by changing the effective
date of this Privacy Policy. By continuing to access the Site after
<h2>Privacy Concerns</h2> such changes have been posted, you signify your agreement to be bound
by them. Be sure to return to this page periodically to ensure
<p>If you have privacy concerns, or have disclosed data you would familiarity with the most current version of this Privacy Policy. </p>
prefer to keep private, please contact us
at <a href="mailto:privacy@mitx.mit.edu">privacy@mitx.mit.edu</a>. </p> <h2>Privacy Concerns</h2>
<p> Effective Date: February 6, 2012 <p>If you have privacy concerns, or have disclosed data you would
prefer to keep private, please contact us
at <a href="mailto:privacy@mitx.mit.edu">privacy@mitx.mit.edu</a>.</p>
<p> Effective Date: February 6, 2012</p>
</div> </div>
</section> </section>
<%! from django.core.urlresolvers import reverse %>
<%inherit file="main.html" />
<%namespace name='static' file='static_content.html'/>
<section class="container">
</section>
<%inherit file="marketing.html" /> <%! from django.core.urlresolvers import reverse %>
<%inherit file="main.html" />
<section class="tos">
<div> <%namespace name='static' file='static_content.html'/>
<h1><i>MITx</i> Terms of Service</h1> <section class="static-container tos">
<h1>MITx Terms of Service</h1>
<p>Welcome to <i>MITx</i>. You must read and agree to these Terms of Service <hr class="horizontal-divider">
(&quot;TOS&quot;), <i>MITx</i>&rsquo;s <a href="/t/privacy.html">Privacy
Policy</a>, and <a href="/t/honor.html">Honor Code</a> prior to <div class="inner-wrapper">
registering for this site or using any portion of this site <p>Welcome to <i>MITx</i>. You must read and agree to these Terms of Service
(&ldquo;Site&rdquo;), including accessing any course materials, chat (&quot;TOS&quot;), <i>MITx</i>&rsquo;s <a href="/t/privacy.html">Privacy
room, mailing list, or other electronic service. These TOS, the Policy</a>, and <a href="/t/honor.html">Honor Code</a> prior to
Privacy Policy and the Honor Code are agreements (the registering for this site or using any portion of this site
&ldquo;Agreements&rdquo;) between you and the Massachusetts Institute (&ldquo;Site&rdquo;), including accessing any course materials, chat
of Technology (&ldquo;MIT&rdquo;). If you do not understand or do not room, mailing list, or other electronic service. These TOS, the
agree to be bound by the terms of the Agreements, please immediately Privacy Policy and the Honor Code are agreements (the
exit this site. </p> &ldquo;Agreements&rdquo;) between you and the Massachusetts Institute
of Technology (&ldquo;MIT&rdquo;). If you do not understand or do not
<p><i>MITx</i> reserves the right to modify these TOS at any time and agree to be bound by the terms of the Agreements, please immediately
will publish notice of any such modifications online on this page for exit this site. </p>
a reasonable period of time following such modifications, and by
changing the effective date of these TOS. By continuing to access the <p><i>MITx</i> reserves the right to modify these TOS at any time and
Site after notice of such changes have been posted, you signify your will publish notice of any such modifications online on this page for
agreement to be bound by them. Be sure to return to this page a reasonable period of time following such modifications, and by
periodically to ensure familiarity with the most current version of changing the effective date of these TOS. By continuing to access the
these TOS. </p> Site after notice of such changes have been posted, you signify your
agreement to be bound by them. Be sure to return to this page
<h2>Description of <i>MITx</i> </h2> periodically to ensure familiarity with the most current version of
these TOS. </p>
<p><i>MITx</i> offers online courses that include opportunities for
professor-to-student and student-to-student interactivity, individual <h2>Description of <i>MITx</i> </h2>
assessment of a student's work, and for students who demonstrate their
mastery of subjects, a certificate or credential. </p> <p><i>MITx</i> offers online courses that include opportunities for
professor-to-student and student-to-student interactivity, individual
<h2>Rules for Online Conduct</h2> assessment of a student's work, and for students who demonstrate their
mastery of subjects, a certificate or credential. </p>
<p>You agree that you are responsible for your own use of the Site and
for your User Postings. &ldquo;User Postings&rdquo; include all <h2>Rules for Online Conduct</h2>
content submitted, posted, published or distributed on the Site by you
or other users of the Site, including but not limited to all forum <p>You agree that you are responsible for your own use of the Site and
posts, wiki edits, notes, questions, comments, videos, and file for your User Postings. &ldquo;User Postings&rdquo; include all
uploads. You agree that you will use the Site in compliance with these content submitted, posted, published or distributed on the Site by you
TOS, the <a href="/t/honor.html">Honor Code</a>, and all applicable or other users of the Site, including but not limited to all forum
local, state, national, and international laws, rules and regulations, posts, wiki edits, notes, questions, comments, videos, and file
including copyright laws and any laws regarding the transmission of uploads. You agree that you will use the Site in compliance with these
technical data exported from your country of residence and all United TOS, the <a href="/t/honor.html">Honor Code</a>, and all applicable
States export control laws. local, state, national, and international laws, rules and regulations,
including copyright laws and any laws regarding the transmission of
<p>As a condition of your use of the Services, you will not use the technical data exported from your country of residence and all United
Site in any manner intended to damage, disable, overburden, or impair States export control laws.
any <i>MITx</i> server, or the network(s) connected to any <i>MITx</i>
server, or interfere with any other party's use and enjoyment of the <p>As a condition of your use of the Services, you will not use the
Site. You may not attempt to gain unauthorized access to the Site, Site in any manner intended to damage, disable, overburden, or impair
other accounts, computer systems or networks connected to any <i>MITx</i> server, or the network(s) connected to any <i>MITx</i>
any <i>MITx</i> server through hacking, password mining or any other server, or interfere with any other party's use and enjoyment of the
means. You may not obtain or attempt to obtain any materials or Site. You may not attempt to gain unauthorized access to the Site,
information stored on the Site, its servers, or associated computers other accounts, computer systems or networks connected to
through any means not intentionally made available through the any <i>MITx</i> server through hacking, password mining or any other
Site. </p> means. You may not obtain or attempt to obtain any materials or
information stored on the Site, its servers, or associated computers
<h2>The following list of items is strictly prohibited on the Site:</h2> through any means not intentionally made available through the
<ol> Site. </p>
<li>Content that defames, harasses, or threatens others
<li>Content that discusses illegal activities with the intent to commit them. <h2>The following list of items is strictly prohibited on the Site:</h2>
<li>Content that infringes another&#39;s intellectual property, <ol>
including, but not limited to, copyrights, or trademarks <li>Content that defames, harasses, or threatens others
<li>Any inappropriate, profane, pornographic, obscene, indecent, or
unlawful content <li>Content that discusses illegal activities with the intent to commit them.
<li>Advertising or any form of commercial solicitation
<li>Political content or content related to partisan political <li>Content that infringes another&#39;s intellectual property,
activities including, but not limited to, copyrights, or trademarks
<li>Viruses, trojan horses, worms, time bombs, corrupted files,
malware, spyware, or any other similar software that may damage the <li>Any inappropriate, profane, pornographic, obscene, indecent, or
operation of another&rsquo;s computer or property unlawful content
<li>Content that contains intentional inaccurate information with the
intent of misleading others. <li>Advertising or any form of commercial solicitation
<li>You, furthermore, agree not to scrape, or otherwise download in
bulk, user-contributed content, a list or directory of users on the <li>Political content or content related to partisan political
system, or other material including but not limited to on-line activities
textbooks, User Postings, or user information.
<lu>You agree to not misrepresent or attempt to misrepresent your <li>Viruses, trojan horses, worms, time bombs, corrupted files,
identity while using the Sites (although you are welcome and malware, spyware, or any other similar software that may damage the
encouraged to use an anonymous username in the forums). operation of another&rsquo;s computer or property
</ol>
<li>Content that contains intentional inaccurate information with the
<h2>User Accounts and Authority</h2> intent of misleading others.
<p>In order to participate in Site activities, you must provide an <li>You, furthermore, agree not to scrape, or otherwise download in
email address (&quot;Email Address&quot;) and a user password bulk, user-contributed content, a list or directory of users on the
(&quot;User Password&quot;) in order to create a user account system, or other material including but not limited to on-line
(&ldquo;User Account&rdquo;). You agree that you will never divulge or textbooks, User Postings, or user information.
share access or access information to your User Account with any third
party for any reason. In setting up your User Account, you may be <li>You agree to not misrepresent or attempt to misrepresent your
prompted or required to enter additional information, including your identity while using the Sites (although you are welcome and
name. You understand and agree that all information provided by you is encouraged to use an anonymous username in the forums).
accurate and current. You agree to maintain and update your </ol>
information to keep it accurate and current. </p>
<h2>User Accounts and Authority</h2>
<p>We care about the confidentiality and security of your personal
information. Please see our <a href="/t/privacy.html">Privacy <p>In order to participate in Site activities, you must provide an
Policy</a> for more information about what information about email address (&quot;Email Address&quot;) and a user password
you <i>MITx</i> collects and how <i>MITx</i> uses that (&quot;User Password&quot;) in order to create a user account
information.</p> (&ldquo;User Account&rdquo;). You agree that you will never divulge or
share access or access information to your User Account with any third
<h2>Your Right to Use Content on the Site</h2> party for any reason. In setting up your User Account, you may be
prompted or required to enter additional information, including your
<p>Unless indicated as being in the public domain, all content on the name. You understand and agree that all information provided by you is
Site is protected by United States copyright. The texts, exams and accurate and current. You agree to maintain and update your
other instructional materials provided with the courses offered on information to keep it accurate and current. </p>
this Site are for your personal use in connection with those courses
only. MIT is planning to make <i>MITx</i> course content and software <p>We care about the confidentiality and security of your personal
infrastructure available under open source licenses that will help information. Please see our <a href="/t/privacy.html">Privacy
create a vibrant ecosystem of contributors and further MIT&rsquo;s Policy</a> for more information about what information about
goal of making education accessible and affordable to the world. </p> you <i>MITx</i> collects and how <i>MITx</i> uses that
information.</p>
<p>Certain reference documents, digital textbooks, articles and other
information on the Site are used with the permission of third parties <h2>Your Right to Use Content on the Site</h2>
and use of that information is subject to certain rules and
conditions, which will be posted along with the information. By using <p>Unless indicated as being in the public domain, all content on the
this Site you agree to abide by all such rules and conditions. Due to Site is protected by United States copyright. The texts, exams and
privacy concerns, User Postings shall be licensed to <i>MITx</i> with other instructional materials provided with the courses offered on
the terms discussed below. Please this Site are for your personal use in connection with those courses
see <a href="/t/copyright.html"><i>MITx's Copyright Page</i></a> for only. MIT is planning to make <i>MITx</i> course content and software
more information.</p> infrastructure available under open source licenses that will help
create a vibrant ecosystem of contributors and further MIT&rsquo;s
<h2>User Postings</h2> goal of making education accessible and affordable to the world. </p>
<p><strong>User Postings Representations and Warranties.</strong> By <p>Certain reference documents, digital textbooks, articles and other
submitting or distributing your User Postings, you affirm, represent, information on the Site are used with the permission of third parties
and warrant that you are the creator and owner of or have the and use of that information is subject to certain rules and
necessary licenses, rights, consents, and permissions to reproduce and conditions, which will be posted along with the information. By using
publish the posted information, and to authorize MIT and <i>MITx</i>'s this Site you agree to abide by all such rules and conditions. Due to
Users to reproduce, modify, publish, and otherwise use that infomation privacy concerns, User Postings shall be licensed to <i>MITx</i> with
and distribute your User Postings as necessary to exercise the the terms discussed below. Please
licenses granted by you below. You, and not <i>MITx</i>, are solely see <a href="/t/copyright.html"><i>MITx's Copyright Page</i></a> for
responsible for your User Postings and the consequences of posting or more information.</p>
publishing them.</p>
<h2>User Postings</h2>
<p><strong>Limited License Grant to MIT.</strong> By submitting or
distributing User Postings to the Site, you hereby grant to MIT a <p><strong>User Postings Representations and Warranties.</strong> By
worldwide, non-exclusive, transferable, assignable, fully paid-up, submitting or distributing your User Postings, you affirm, represent,
royalty-free, perpetual, irrevocable right and license to host, and warrant that you are the creator and owner of or have the
transfer, display, perform, reproduce, modify, distribute and necessary licenses, rights, consents, and permissions to reproduce and
re-distribute, relicense, and otherwise exploit your User Postings, in publish the posted information, and to authorize MIT and <i>MITx</i>'s
whole or in part, in any form, and in any media formats and through Users to reproduce, modify, publish, and otherwise use that infomation
any media channels (now known or hereafter developed).</p> and distribute your User Postings as necessary to exercise the
licenses granted by you below. You, and not <i>MITx</i>, are solely
<p><strong>Limited License Grant to <i>MITx</i> Users.</strong> By responsible for your User Postings and the consequences of posting or
submitting or distributing User Postings to the Site, you hereby grant publishing them.</p>
to each User of the Site a non-exclusive license to access and use
your User Postings in connection with their use of the Site for their <p><strong>Limited License Grant to MIT.</strong> By submitting or
own personal purposes. </p> distributing User Postings to the Site, you hereby grant to MIT a
worldwide, non-exclusive, transferable, assignable, fully paid-up,
<h2>Use of <i>MITx</i> and MIT Names, Trademarks and Service Marks</h2> royalty-free, perpetual, irrevocable right and license to host,
transfer, display, perform, reproduce, modify, distribute and
<p>&ldquo;<i>MITx</i>,&rdquo; &quot;MIT&quot;, &quot;Massachusetts Institute re-distribute, relicense, and otherwise exploit your User Postings, in
of Technology&quot;, and its logos and seal are trademarks of the whole or in part, in any form, and in any media formats and through
Massachusetts Institute of Technology. You may not use MIT&rsquo;s any media channels (now known or hereafter developed).</p>
names or logos, or any variations thereof, without prior written
consent of MIT. You may not use the MIT name in any of its forms nor <p><strong>Limited License Grant to <i>MITx</i> Users.</strong> By
MIT seals or logos for promotional purposes, or in any way that submitting or distributing User Postings to the Site, you hereby grant
deliberately or inadvertently claims, suggests, or in MIT&#39;s sole to each User of the Site a non-exclusive license to access and use
judgment gives the appearance or impression of a relationship with or your User Postings in connection with their use of the Site for their
endorsement by MIT. own personal purposes. </p>
<p>All Trademarks not owned by MIT that appear on the Site or on or <h2>Use of <i>MITx</i> and MIT Names, Trademarks and Service Marks</h2>
through the services made available on or through the Site, if any,
are the property of their respective owners. Nothing contained <p>&ldquo;<i>MITx</i>,&rdquo; &quot;MIT&quot;, &quot;Massachusetts Institute
on the Site should be construed as granting, by implication, estoppel, of Technology&quot;, and its logos and seal are trademarks of the
or otherwise, any license or right to use any such Trademark displayed Massachusetts Institute of Technology. You may not use MIT&rsquo;s
on the Site without the written permission of the third party that may names or logos, or any variations thereof, without prior written
own the applicable Trademark.</a> consent of MIT. You may not use the MIT name in any of its forms nor
MIT seals or logos for promotional purposes, or in any way that
deliberately or inadvertently claims, suggests, or in MIT&#39;s sole
<h2>Digital Millennium Copyright Act</h2> judgment gives the appearance or impression of a relationship with or
endorsement by MIT.
<p> Copyright owners who believe their material has been infringed on
the Site should contact MITx's designated copyright agent at <p>All Trademarks not owned by MIT that appear on the Site or on or
dcma-agent@mit.edu or at 77 Massachusetts Avenue, Cambridge, MA through the services made available on or through the Site, if any,
02138-4307 Attention: MIT DCMA Agent, W92-263A. are the property of their respective owners. Nothing contained
on the Site should be construed as granting, by implication, estoppel,
<p> Notification must or otherwise, any license or right to use any such Trademark displayed
include: on the Site without the written permission of the third party that may
<ul> own the applicable Trademark.</a>
<li> Identification of the copyrighted work, or, in the case of
multiple works at the same location, a representative list of such
works at that site. <h2>Digital Millennium Copyright Act</h2>
<li> Identification of the material that is claimed to be infringing
or to be the subject of infringing activity. You must include <p> Copyright owners who believe their material has been infringed on
sufficient information for us to locate the material (e.g., url, ip the Site should contact MITx's designated copyright agent at
address, computer name). dcma-agent@mit.edu or at 77 Massachusetts Avenue, Cambridge, MA
<li> Information for us to be able to contact the complaining party 02138-4307 Attention: MIT DCMA Agent, W92-263A.</p>
(e.g., email address, phone number).
<li> A statement that the complaining party believes that the use of <p> Notification must include:</P>
the material has not been authorized by the copyright owner or an <ul>
authorized agent. <li> Identification of the copyrighted work, or, in the case of
<li> A statement that the information in the notification is accurate multiple works at the same location, a representative list of such
and that the complaining party is authorized to act on behalf of the works at that site.</li>
copyright owner. <li> Identification of the material that is claimed to be infringing
</ul> or to be the subject of infringing activity. You must include
sufficient information for us to locate the material (e.g., url, ip
<h2>Disclaimer of Warranty / Indemnification/Limitation of Liabilities</h2> address, computer name).</li>
<li> Information for us to be able to contact the complaining party
<p>THE SITE IS PROVIDED &quot;AS IS&quot; AND &quot;AS AVAILABLE&quot; (e.g., email address, phone number).</li>
WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING <li> A statement that the complaining party believes that the use of
WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS the material has not been authorized by the copyright owner or an
FOR USE FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. MIT does not authorized agent.</li>
warrant the Site will operate in an uninterrupted or error-free manner <li> A statement that the information in the notification is accurate
or that the Site is free of viruses or other harmful components. Use and that the complaining party is authorized to act on behalf of the
of information obtained from or through this Site is at your own copyright owner.</li>
risk. Your access to or download of information, materials, or data </ul>
through the Site or any reference sites is at your own discretion and
risk and that you will be solely responsible for any damage to your <h2>Disclaimer of Warranty / Indemnification/Limitation of Liabilities</h2>
property (including your computer system) or loss of data that results
from the download or use of such material or data. We may close or <p>THE SITE IS PROVIDED &quot;AS IS&quot; AND &quot;AS AVAILABLE&quot;
limit enrollment for pedagogical or technological reasons.</p> WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
<p><strong>User Postings Disclaimer.</strong> You understand that when FOR USE FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. MIT does not
using the Site you will be exposed to User Postings from a variety of warrant the Site will operate in an uninterrupted or error-free manner
sources, and that MIT is not responsible for the accuracy, usefulness, or that the Site is free of viruses or other harmful components. Use
reliability, or intellectual property rights of or relating to such of information obtained from or through this Site is at your own
User Postings. You further understand and acknowledge that you may be risk. Your access to or download of information, materials, or data
exposed to User Postings that are inaccurate, offensive, defamatory, through the Site or any reference sites is at your own discretion and
indecent or objectionable, and you agree to waive, and hereby do risk and that you will be solely responsible for any damage to your
waive, any legal or equitable rights or remedies you have or may have property (including your computer system) or loss of data that results
against MIT with respect thereto. MIT does not endorse any User from the download or use of such material or data. We may close or
Postings or any opinion, recommendation or advice expressed limit enrollment for pedagogical or technological reasons.</p>
therein. <i>MITx</i> has no obligation to monitor any User Postings or
any other user communications through the Site. However, <i>MITx</i> reserves <p><strong>User Postings Disclaimer.</strong> You understand that when
the right to review User Postings and to edit or remove, in whole or using the Site you will be exposed to User Postings from a variety of
in part, such User Postings in its sole discretion. If notified by a sources, and that MIT is not responsible for the accuracy, usefulness,
User or a content owner of a User Posting that allegedly does not reliability, or intellectual property rights of or relating to such
conform to the TOS, MIT may investigate the allegation and determine User Postings. You further understand and acknowledge that you may be
in its sole discretion whether to remove the User Posting, which it exposed to User Postings that are inaccurate, offensive, defamatory,
reserves the right to do at any time and without notice. </p> indecent or objectionable, and you agree to waive, and hereby do
waive, any legal or equitable rights or remedies you have or may have
<p><strong>Links to Other Sites.</strong> The Site may include against MIT with respect thereto. MIT does not endorse any User
hyperlinks to sites maintained or controlled by others. MIT is not Postings or any opinion, recommendation or advice expressed
responsible for and does not routinely screen, approve, review or therein. <i>MITx</i> has no obligation to monitor any User Postings or
endorse the contents of or use of any of the products or services that any other user communications through the Site. However, <i>MITx</i> reserves
may be offered at these sites. If you decide to access linked third the right to review User Postings and to edit or remove, in whole or
party web sites, you do so at your own risk.</p> in part, such User Postings in its sole discretion. If notified by a
User or a content owner of a User Posting that allegedly does not
<strong> conform to the TOS, MIT may investigate the allegation and determine
<p>YOU AGREE THAT MIT WILL NOT BE LIABLE TO YOU FOR ANY LOSS OR in its sole discretion whether to remove the User Posting, which it
DAMAGES, EITHER ACTUAL OR CONSEQUENTIAL, ARISING OUT OF OR RELATING TO reserves the right to do at any time and without notice. </p>
THESE TERMS OF SERVICE, OR TO YOUR (OR ANY THIRD PARTY&#39;S) USE OR
INABILITY TO USE THE SITE, OR TO YOUR PLACEMENT OF CONTENT ON THE <p><strong>Links to Other Sites.</strong> The Site may include
SITE, OR TO YOUR RELIANCE UPON INFORMATION OBTAINED FROM OR THROUGH hyperlinks to sites maintained or controlled by others. MIT is not
THE SITE WHETHER BASED IN CONTRACT, TORT, STATUTORY OR OTHER LAW, responsible for and does not routinely screen, approve, review or
EXCEPT ONLY IN THE CASE OF DEATH OR PERSONAL INJURY WHERE AND ONLY TO endorse the contents of or use of any of the products or services that
THE EXTENT THAT APPLICABLE LAW REQUIRES SUCH LIABILITY. </p> may be offered at these sites. If you decide to access linked third
party web sites, you do so at your own risk.</p>
<p>IN PARTICULAR, MIT WILL HAVE NO LIABILTY FOR ANY CONSEQUENTIAL,
INDIRECT, PUNITIVE, SPECIAL, EXEMPLARY OR INCIDENTAL DAMAGES, WHETHER <p><strong>YOU AGREE THAT MIT WILL NOT BE LIABLE TO YOU FOR ANY LOSS OR
FORESEEABLE OR UNFORESEEABLE, (INCLUDING, BUT NOT LIMITED TO, CLAIMS DAMAGES, EITHER ACTUAL OR CONSEQUENTIAL, ARISING OUT OF OR RELATING TO
FOR DEFAMATION, ERRORS, LOSS OF DATA, OR INTERRUPTION IN AVAILABILITY THESE TERMS OF SERVICE, OR TO YOUR (OR ANY THIRD PARTY&#39;S) USE OR
OF DATA).</p> INABILITY TO USE THE SITE, OR TO YOUR PLACEMENT OF CONTENT ON THE
</strong> SITE, OR TO YOUR RELIANCE UPON INFORMATION OBTAINED FROM OR THROUGH
THE SITE WHETHER BASED IN CONTRACT, TORT, STATUTORY OR OTHER LAW,
<h2>Indemnification</h2> EXCEPT ONLY IN THE CASE OF DEATH OR PERSONAL INJURY WHERE AND ONLY TO
THE EXTENT THAT APPLICABLE LAW REQUIRES SUCH LIABILITY.</strong></p>
<p>You agree to defend, hold harmless and indemnify MIT, and its
subsidiaries, affiliates, officers, agents, and employees from and <p><strong>IN PARTICULAR, MIT WILL HAVE NO LIABILTY FOR ANY CONSEQUENTIAL,
against any third-party claims, actions or demands arising out of, INDIRECT, PUNITIVE, SPECIAL, EXEMPLARY OR INCIDENTAL DAMAGES, WHETHER
resulting from or in any way related to your use of the Site, FORESEEABLE OR UNFORESEEABLE, (INCLUDING, BUT NOT LIMITED TO, CLAIMS
including any liability or expense arising from any and all claims, FOR DEFAMATION, ERRORS, LOSS OF DATA, OR INTERRUPTION IN AVAILABILITY
losses, damages (actual and consequential), suits, judgments, OF DATA).</strong</p>
litigation costs and attorneys&#39; fees, of every kind and nature. In
such a case, MIT will provide you with written notice of such claim, <h2>Indemnification</h2>
suit or action.</p>
<p>You agree to defend, hold harmless and indemnify MIT, and its
<h2>Miscellaneous</h2> subsidiaries, affiliates, officers, agents, and employees from and
against any third-party claims, actions or demands arising out of,
<p><strong>Termination Rights.</strong> You agree that MIT, in its sole resulting from or in any way related to your use of the Site,
discretion, may terminate your use of the Site or your participation including any liability or expense arising from any and all claims,
in it thereof, for any reason or no reason. If you no longer desire to losses, damages (actual and consequential), suits, judgments,
participate in the Site, you may terminate your participation therein litigation costs and attorneys&#39; fees, of every kind and nature. In
upon notice to MIT.</p> such a case, MIT will provide you with written notice of such claim,
suit or action.</p>
<p><strong>Entire Agreement.</strong> This Agreement constitutes the entire agreement
between you and MIT with respect to your use of the Site, superseding <h2>Miscellaneous</h2>
any prior agreements between you and MIT regarding your use of the
Site. </p> <p><strong>Termination Rights.</strong> You agree that MIT, in its sole
discretion, may terminate your use of the Site or your participation
<p><strong>Waiver and Severability of TOS.</strong> The failure of MIT to exercise or in it thereof, for any reason or no reason. If you no longer desire to
enforce any right or provision of the TOS of Site shall not constitute participate in the Site, you may terminate your participation therein
a waiver of such right or provision. If any provision of the TOS is upon notice to MIT.</p>
found by a court of competent jurisdiction to be invalid, the parties
nevertheless agree that the court should endeavor to give effect to <p><strong>Entire Agreement.</strong> This Agreement constitutes the entire agreement
the parties&#39; intentions as reflected in the provision, and the between you and MIT with respect to your use of the Site, superseding
other provisions of the TOS remain in full force and effect.</p> any prior agreements between you and MIT regarding your use of the
Site. </p>
<p><strong>Choice of Law/Forum Selection.</strong> You agree that any dispute
arising out of or relating to these Terms or any content posted to a <p><strong>Waiver and Severability of TOS.</strong> The failure of MIT to exercise or
Site will be governed by the laws of the Commonwealth of enforce any right or provision of the TOS of Site shall not constitute
Massachusetts, excluding its conflicts of law provisions. You further a waiver of such right or provision. If any provision of the TOS is
consent to the personal jurisdiction of and exclusive venue in the found by a court of competent jurisdiction to be invalid, the parties
federal and state courts located in and serving Boston, Massachusetts nevertheless agree that the court should endeavor to give effect to
as the legal forum for any such dispute.</p> the parties&#39; intentions as reflected in the provision, and the
other provisions of the TOS remain in full force and effect.</p>
<p><strong>Effective Date:</strong> February 20, 2012</p><div>
</div> <p><strong>Choice of Law/Forum Selection.</strong> You agree that any dispute
arising out of or relating to these Terms or any content posted to a
Site will be governed by the laws of the Commonwealth of
Massachusetts, excluding its conflicts of law provisions. You further
consent to the personal jurisdiction of and exclusive venue in the
federal and state courts located in and serving Boston, Massachusetts
as the legal forum for any such dispute.</p>
<p><strong>Effective Date:</strong> February 20, 2012</p><div>
</div>
</section> </section>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment