## -*- coding: utf-8 -*- <%inherit file="base/root.html"/> <%block name="title"> ${_('Log In')} <%include file="/base/flash_msg.html"/>
%if c.site_name: ${_('Log In to %s') % c.site_name} %else: ${_('Log In')} %endif
${h.form(url('login_home', came_from=c.came_from))}
${h.text('username',class_='form-control')}
${h.password('password',class_='form-control')}
${h.link_to(_('Forgot your password ?'),h.url('reset_password'))} %if h.HasPermissionAny('hg.admin', 'hg.register.auto_activate', 'hg.register.manual_activate')(): / ${h.link_to(_("Don't have an account ?"),h.url('register'))} %endif
${h.submit('sign_in',_('Sign In'),class_="btn btn-default")}
${h.end_form()}