Fixed submit button style, added create-account notice to log in page

This commit is contained in:
Jef van Schendel 2011-05-28 21:32:12 +02:00
parent 7c2005b6e2
commit b5cc7afea2
2 changed files with 7 additions and 2 deletions

View File

@ -23,6 +23,11 @@ h1 {
margin-top:40px;
}
p {
font-family: sans;
font-size:16px;
}
a {
color: #86D4B1;
}
@ -67,7 +72,6 @@ label {
color:#272727;
margin:10px;
font-size:1em;
float:left;
display:block;
text-align:center;
padding-left:11px;
@ -92,7 +96,7 @@ label {
margin-left:auto;
margin-right:auto;
background-color:#393939;
padding:0px 83px 83px;
padding:0px 83px 30px 83px;
border-top:5px solid #d49086;
font-size:18px;
}

View File

@ -35,6 +35,7 @@
{% if next %}
<input type="hidden" name="next" value="{{ next }}" class="button" />
{% endif %}
<p>Don't have an account yet? <a href="{{ request.urlgen('mediagoblin.auth.register') }}">Create one here!</a></p>
</div>
</form>
{% endblock %}