Commit 750e70e8 by chrisndodge

Merge pull request #878 from MITx/feature/cale/edge-landing-page

Feature/cale/edge landing page
parents 73a80ec4 4814f8c3
...@@ -119,7 +119,7 @@ ...@@ -119,7 +119,7 @@
width: 143px; width: 143px;
height: 39px; height: 39px;
margin: auto; margin: auto;
background: url(../img/edge-logo-small.png) no-repeat; background: url(../images/edge-logo-small.png) no-repeat;
text-indent: -9999px; text-indent: -9999px;
overflow: hidden; overflow: hidden;
} }
......
../../../common/static/images/edge-logo-small.png
\ No newline at end of file
...@@ -174,4 +174,8 @@ $paleYellow: #fffcf1; ...@@ -174,4 +174,8 @@ $paleYellow: #fffcf1;
text-indent: -9999px; text-indent: -9999px;
overflow: hidden; overflow: hidden;
} }
#register .login-extra {
display: none;
}
} }
\ No newline at end of file
<%inherit file="../stripped-main.html" /> <%inherit file="../stripped-main.html" />
<%! from django.core.urlresolvers import reverse %>
<%block name="title"><title>edX edge</title></%block> <%block name="title"><title>edX edge</title></%block>
<%block name="bodyclass">no-header edge-landing</%block> <%block name="bodyclass">no-header edge-landing</%block>
<%block name="content"> <%block name="content">
<div class="main-wrapper"> <div class="main-wrapper">
<div class="edx-edge-logo-large">edX edge</div> <div class="edx-edge-logo-large">edX edge</div>
<div class="content"> <div class="content">
<div class="log-in-form"> <div class="log-in-form">
<h2>Log in to your courses</h2> <h2>Log in to your courses</h2>
<form> <form id="login_form" data-remote="true" method="post" action="/login">
<div class="row"> <div class="row">
<label>Email</label> <label>Email</label>
<input name="email" type="email" class="email-field" tabindex="1"> <input name="email" type="email" class="email-field" tabindex="1">
...@@ -27,9 +27,33 @@ ...@@ -27,9 +27,33 @@
<div class="sign-up"> <div class="sign-up">
<h3>Register for classes</h3> <h3>Register for classes</h3>
<p>Take free online courses from today's leading universities.</p> <p>Take free online courses from today's leading universities.</p>
<p><a href="#" class="register-button">Register</a></p> <p><a href="#signup-modal" id="signup" rel="leanModal" class="register-button">Register</a></p>
</div> </div>
</div> </div>
</div> </div>
</%block> </%block>
\ No newline at end of file
<%block name="js_extra">
<script type="text/javascript">
(function() {
$(document).delegate('#login_form', 'ajax:success', function(data, json, xhr) {
if(json.success) {
next = getParameterByName('next');
if(next) {
location.href = next;
} else {
location.href = "${reverse('dashboard')}";
}
} else {
if($('#login_error').length == 0) {
$('#login_form').prepend('<div id="login_error" class="modal-form-error"></div>');
}
$('#login_error').html(json.value).stop().css("display", "block");
}
});
})(this)
</script>
</%block>
<%include file="../signup_modal.html" />
\ No newline at end of file
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