mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 20:59:01 +02:00

Thanks to Michael Halstead <michael@yoctoproject.org> for this fix. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
21 lines
422 B
HTML
21 lines
422 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<form id="password_form" method="post" action=".">
|
|
{{ form.as_p }}
|
|
|
|
<input type="submit" class="btn" value="{% trans 'Submit' %}" />
|
|
{% csrf_token %}
|
|
</form>
|
|
{% endblock %}
|
|
|
|
|
|
{% block scripts %}
|
|
<script>
|
|
$(document).ready(function() {
|
|
$("#password_form input:text, #password_form textarea").first().focus();
|
|
});
|
|
</script>
|
|
{% endblock %}
|