added focus to form input

Conflicts:
	mediagoblin/auth/views.py
	mediagoblin/plugins/openid/views.py
This commit is contained in:
Rodney Ewing 2013-05-23 13:22:13 -07:00
parent 09ae2df4eb
commit 57e8be21bc
5 changed files with 13 additions and 4 deletions

View File

@ -62,7 +62,9 @@ def register(request):
return render_to_response(
request,
'mediagoblin/auth/register.html',
{'register_form': register_form})
{'register_form': register_form,
'focus': 'username',
'post_url': request.urlgen('mediagoblin.auth.register')})
def login(request):
@ -113,6 +115,8 @@ def login(request):
{'login_form': login_form,
'next': request.GET.get('next') or request.form.get('next'),
'login_failed': login_failed,
'focus': 'username',
'post_url': request.urlgen('mediagoblin.auth.login'),
'allow_registration': mg_globals.app_config["allow_registration"]})

View File

@ -39,6 +39,7 @@
<input type="submit" value="{% trans %}Set password{% endtrans %}" class="button_form"/>
</div>
</div>
</form>
</form><!-- Focus the field passed in with the focus arg-->
<script>$(document).ready(function(){$({{ focus }}).focus();});</script>
{% endblock %}

View File

@ -35,4 +35,6 @@
</div>
</div>
</form>
<!-- Focus the field passed in with the focus arg-->
<script>$(document).ready(function(){$({{ focus }}).focus();});</script>
{% endblock %}

View File

@ -59,4 +59,6 @@
{% endif %}
</div>
</form>
<!-- Focus the field passed in with the focus arg-->
<script>$(document).ready(function(){$({{ focus }}).focus();});</script>
{% endblock %}

View File

@ -42,6 +42,6 @@
</div>
</div>
</form>
<!-- Focus the username field by default -->
<script>$(document).ready(function(){$("#username").focus();});</script>
<!-- Focus the field passed in with the focus arg-->
<script>$(document).ready(function(){$({{ focus }}).focus();});</script>
{% endblock %}