Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
c41c084b
Commit
c41c084b
authored
Oct 12, 2012
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wire up login and register forms for edx landing page
parent
51a19b3d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
5 deletions
+34
-5
lms/static/sass/multicourse/_edge.scss
+5
-0
lms/templates/university_profile/edge.html
+29
-5
No files found.
lms/static/sass/multicourse/_edge.scss
View file @
c41c084b
...
...
@@ -174,4 +174,8 @@ $paleYellow: #fffcf1;
text-indent
:
-9999px
;
overflow
:
hidden
;
}
#register
.login-extra
{
display
:
none
;
}
}
\ No newline at end of file
lms/templates/university_profile/edge.html
View file @
c41c084b
<
%
inherit
file=
"../stripped-main.html"
/>
<
%!
from
django
.
core
.
urlresolvers
import
reverse
%
>
<
%
block
name=
"title"
><title>
edX edge
</title></
%
block>
<
%
block
name=
"bodyclass"
>
no-header edge-landing
</
%
block>
<
%
block
name=
"content"
>
<div
class=
"main-wrapper"
>
<div
class=
"edx-edge-logo-large"
>
edX edge
</div>
<div
class=
"content"
>
<div
class=
"log-in-form"
>
<h2>
Log in to your courses
</h2>
<form>
<form
id=
"login_form"
data-remote=
"true"
method=
"post"
action=
"/login"
>
<div
class=
"row"
>
<label>
Email
</label>
<input
name=
"email"
type=
"email"
class=
"email-field"
tabindex=
"1"
>
...
...
@@ -27,9 +27,33 @@
<div
class=
"sign-up"
>
<h3>
Register for classes
</h3>
<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>
</
%
block>
\ No newline at end of file
</
%
block>
<
%
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment