## -*- coding: utf-8 -*- <%inherit file="base/root.html"/> <%def name="title()"> ${_('Sign In')} %if c.rhodecode_name: · ${h.branding(c.rhodecode_name)} %endif
<%include file="/base/flash_msg.html"/>
${h.form(request.route_path('login', _query={'came_from': came_from}), needs_csrf_token=False)} ${h.text('username', class_='focus', value=defaults.get('username'))} %if 'username' in errors: ${errors.get('username')}
%endif ${h.password('password', class_='focus')} %if 'password' in errors: ${errors.get('password')}
%endif ${h.checkbox('remember', value=True, checked=defaults.get('remember'))} ${h.submit('sign_in', _('Sign In'), class_="btn sign-in")} ${h.end_form()}
<%block name="below_login_button" />