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
b5ec11af
Commit
b5ec11af
authored
Apr 10, 2013
by
Brian Talbot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
edx.org - adding in more UI status when processing login/register forms
parent
7a0ddb24
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
lms/templates/login.html
+3
-2
lms/templates/register.html
+3
-2
No files found.
lms/templates/login.html
View file @
b5ec11af
...
...
@@ -51,13 +51,14 @@
function
toggleSubmitButton
(
e
)
{
var
$msgError
=
$
(
'form .status.submission-error'
);
var
$submitButton
=
$
(
'form .form-actions #submit'
);
var
$submitButtonCopy
=
$submitButton
.
html
();
if
(
!
$msgError
.
hasClass
(
'is-shown'
))
{
$submitButton
.
prop
(
'disabled'
,
true
);
$submitButton
.
prop
(
'disabled'
,
true
)
.
html
(
'Processing your account information …'
)
;
}
else
{
$submitButton
.
prop
(
'disabled'
,
false
);
$submitButton
.
prop
(
'disabled'
,
false
)
.
html
(
$submitButtonCopy
)
;
}
}
</script>
...
...
lms/templates/register.html
View file @
b5ec11af
...
...
@@ -52,13 +52,14 @@
function
toggleSubmitButton
(
e
)
{
var
$msgError
=
$
(
'form .status.submission-error'
);
var
$submitButton
=
$
(
'form .form-actions #submit'
).
prop
(
'disabled'
,
true
);
var
$submitButtonCopy
=
$submitButton
.
html
();
if
(
!
$msgError
.
hasClass
(
'is-shown'
))
{
$submitButton
.
prop
(
'disabled'
,
true
);
$submitButton
.
prop
(
'disabled'
,
true
)
.
html
(
'Processing your registration …'
)
;
}
else
{
$submitButton
.
prop
(
'disabled'
,
false
);
$submitButton
.
prop
(
'disabled'
,
false
)
.
html
(
$submitButtonCopy
)
;
}
}
</script>
...
...
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