# HG changeset patch # User Mads Kiilerich # Date 2017-12-13 01:38:44 # Node ID efba9f77d48f8e5837ba3392a852fe1323a670b9 # Parent 5bfea0b02e243c6e190cf6d217a461afc8feec40 login: drop the big lock icon - just put a small one in the header It is too much trouble to try to make a nice graphical element out of it. diff --git a/kallithea/public/less/style.less b/kallithea/public/less/style.less --- a/kallithea/public/less/style.less +++ b/kallithea/public/less/style.less @@ -189,12 +189,6 @@ div.panel div.panel-heading { font-weight: 700; } -#login .panel-body .icon-lock { - font-size: 100px; - color: #DDD; - margin-left: -15px; - z-index: 1; -} .user-menu { padding: 0 !important; } diff --git a/kallithea/templates/login.html b/kallithea/templates/login.html --- a/kallithea/templates/login.html +++ b/kallithea/templates/login.html @@ -8,16 +8,18 @@ <%include file="/base/flash_msg.html"/>
+
+ %if c.site_name: -
${_('Log In to %s') % c.site_name}
+ ${_('Log In to %s') % c.site_name} %else: -
${_('Log In')}
+ ${_('Log In')} %endif +
${h.form(url('login_home', came_from=c.came_from))}
-