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
29fd5560
Commit
29fd5560
authored
Jan 25, 2012
by
Kyle Fiedler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed problem in with reset password on lightbox
parent
6d3e6827
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
25 deletions
+28
-25
password_reset_form.html
+3
-2
sass/_fancybox.scss
+25
-23
No files found.
password_reset_form.html
View file @
29fd5560
...
...
@@ -3,6 +3,7 @@
<p>
Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one.
</p>
<form
action=
"/password_reset/"
method=
"post"
>
<input
type=
'hidden'
name=
'csrfmiddlewaretoken'
value=
'${ csrf }'
/>
<p><label
for=
"id_email"
>
E-mail address:
</label>
<input
id=
"id_email"
type=
"text"
name=
"email"
maxlength=
"75"
/>
<input
type=
"button"
id=
"pwd_reset_button"
value=
"Reset my password"
/></p>
<input
type=
'hidden'
name=
'csrfmiddlewaretoken'
value=
'${ csrf }'
/>
<label
for=
"id_email"
>
E-mail address:
</label>
<input
id=
"id_email"
type=
"email"
name=
"email"
maxlength=
"75"
/>
<input
type=
"button"
id=
"pwd_reset_button"
value=
"Reset my password"
/>
</form>
sass/_fancybox.scss
View file @
29fd5560
...
...
@@ -27,7 +27,6 @@ div#fancybox-wrap {
h1
{
font-size
:
24px
;
margin-top
:
0
;
font-family
:
"Oswald"
;
padding-bottom
:
lh
();
border-bottom
:
1px
solid
#eee
;
margin-bottom
:
lh
();
...
...
@@ -44,20 +43,25 @@ div#fancybox-wrap {
font-weight
:
bold
;
}
label
{
display
:
block
;
font-weight
:
bold
;
}
#{
$all-text-inputs
}
{
width
:
100%
;
@include
box-sizing
(
border-box
);
}
input
[
type
=
"checkbox"
]
{
margin-right
:
10px
;
}
ol
{
li
{
margin-bottom
:
lh
();
width
:
grid-width
(
6
);
float
:
left
;
&
:nth-child
(
odd
)
{
margin-right
:
$gw-gutter
;
}
&
.terms
,
&
.remember
{
float
:
none
;
width
:
auto
;
clear
:
both
;
padding-top
:
lh
();
border-top
:
1px
solid
#eee
;
}
...
...
@@ -67,10 +71,6 @@ div#fancybox-wrap {
float
:
none
;
}
label
{
display
:
block
;
font-weight
:
bold
;
}
ul
{
list-style
:
disc
outside
none
;
...
...
@@ -84,15 +84,6 @@ div#fancybox-wrap {
float
:
none
;
}
}
#{
$all-text-inputs
}
{
width
:
100%
;
@include
box-sizing
(
border-box
);
}
input
[
type
=
"checkbox"
]
{
margin-right
:
10px
;
}
}
}
...
...
@@ -121,11 +112,22 @@ div#fancybox-wrap {
a
{
color
:
#999
;
&
:hover
{
color
:
#444
;
}
}
}
div
#pwd_reset
{
p
{
margin-bottom
:
lh
();
}
input
[
type
=
"email"
]
{
margin-bottom
:
lh
();
}
}
}
}
}
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