Commit 29fd5560 by Kyle Fiedler

Fixed problem in with reset password on lightbox

parent 6d3e6827
...@@ -3,6 +3,7 @@ ...@@ -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> <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"> <form action="/password_reset/" method="post">
<input type='hidden' name='csrfmiddlewaretoken' value='${ csrf }' /> <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> <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> </form>
...@@ -27,7 +27,6 @@ div#fancybox-wrap { ...@@ -27,7 +27,6 @@ div#fancybox-wrap {
h1 { h1 {
font-size: 24px; font-size: 24px;
margin-top: 0; margin-top: 0;
font-family: "Oswald";
padding-bottom: lh(); padding-bottom: lh();
border-bottom: 1px solid #eee; border-bottom: 1px solid #eee;
margin-bottom: lh(); margin-bottom: lh();
...@@ -44,20 +43,25 @@ div#fancybox-wrap { ...@@ -44,20 +43,25 @@ div#fancybox-wrap {
font-weight: bold; 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 { ol {
li { li {
margin-bottom: lh(); margin-bottom: lh();
width: grid-width(6);
float: left;
&:nth-child(odd) {
margin-right: $gw-gutter;
}
&.terms, &.remember { &.terms, &.remember {
float: none;
width: auto;
clear: both;
padding-top: lh(); padding-top: lh();
border-top: 1px solid #eee; border-top: 1px solid #eee;
} }
...@@ -67,10 +71,6 @@ div#fancybox-wrap { ...@@ -67,10 +71,6 @@ div#fancybox-wrap {
float: none; float: none;
} }
label {
display: block;
font-weight: bold;
}
ul { ul {
list-style: disc outside none; list-style: disc outside none;
...@@ -84,15 +84,6 @@ div#fancybox-wrap { ...@@ -84,15 +84,6 @@ div#fancybox-wrap {
float: none; 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 { ...@@ -121,11 +112,22 @@ div#fancybox-wrap {
a { a {
color: #999; color: #999;
&:hover { &:hover {
color: #444; color: #444;
} }
} }
} }
div#pwd_reset {
p {
margin-bottom: lh();
}
input[type="email"] {
margin-bottom: lh();
}
}
} }
} }
} }
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