Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for ticket 777 #5

Merged
2 commits merged into from
Sep 30, 2010
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 5 additions & 10 deletions src/GeoNodePy/geonode/templates/registration/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,11 @@ <h2>GeoNode Login</h2>

<form method="post" action="{% url django.contrib.auth.views.login %}">
{% csrf_token %}
<p>
{{ form.username.label_tag }}
{{ form.username }}
</p>
<p>
{{ form.password.label_tag }}
{{ form.password }}
</p>
<input type="hidden" name="next" value="{{next}}" />
<input type="submit" value="Login"/>
<ul class="form">
{{ form.as_ul }}
<li><input type="hidden" name="next" value="{{next}}" /></li>
<li><input type="submit" value="Login"/></li>
</ul>
</form>
</div>
{% endblock %}
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
<div class="twocol">
<form method="post" action=".">
{% csrf_token %}
{{ form.as_p }}

<input type="submit" value="{% trans 'Submit' %}" />
<ul class="form">
{{ form.as_ul }}
<li><input type="submit" value="{% trans 'Submit' %}" /></li>
</ul>
</form>
</div>
{% endblock %}
1 change: 1 addition & 0 deletions src/geonode-client/src/theme/app/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,7 @@ clear: both;
div#main form ul.form li label {
display: block;
font-weight: bold;
text-transform: capitalize;
}

div#main form ul.form li input {
Expand Down