## -*- coding: utf-8 -*- <%inherit file="base/root.html"/> <%namespace file="base/social_buttons.html" import="render_social_buttons"/> <%def name="title()"> ${_('Sign In')} %if c.rhodecode_name: · ${h.branding(c.rhodecode_name)} %endif
<%include file="/base/flash_msg.html"/>
${h.form(h.url.current(**request.GET), needs_csrf_token=False)} ${h.text('username',class_='focus')} ${h.password('password',class_='focus')} ${h.submit('sign_in',_('Sign In'),class_="btn sign-in")} ${h.end_form()}
% if c.social_plugins:

${_('Sign In using one of external services')}:

${render_social_buttons(c.social_plugins, 'login')}

% endif