Skip to content

Commit

Permalink
Fix logout template
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes authored and amercader committed Mar 11, 2013
1 parent 0b08166 commit 6580bcd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ckan/templates/user/logout_first.html
Expand Up @@ -8,9 +8,9 @@
{% block form %}
<div class="alert alert-error">{{ _("You're already logged in as {user}.").format(user=c.user) }} <a href="{{ logout_url }}">{{ _('Logout') }}</a>?</div>
<div class="form-horizontal">
{{ form.input('login', label="{{ _(Username') }}", id='field-login', value="", error="", classes=["control-full"], attrs={"disabled": "disabled"}) }}
{{ form.input('password', label="{{ _(Password') }}", id='field-password', type="password", value="", error="", classes=["control-full"], attrs={"disabled": "disabled"}) }}
{{ form.checkbox('remember', label="{{ _(Remember me') }}", id='field-remember', checked=true, attrs={"disabled": "disabled"}) }}
{{ form.input('login', label=_('Username'), id='field-login', value="", error="", classes=["control-full"], attrs={"disabled": "disabled"}) }}
{{ form.input('password', label=_('Password'), id='field-password', type="password", value="", error="", classes=["control-full"], attrs={"disabled": "disabled"}) }}
{{ form.checkbox('remember', label=_('Remember me'), id='field-remember', checked=true, attrs={"disabled": "disabled"}) }}
<div class="form-actions">
<button class="btn btn-primary disabled" type="submit" disabled>{{ _('Log in') }}</button>
</div>
Expand Down

0 comments on commit 6580bcd

Please sign in to comment.