diff --git a/rhodecode/templates/login.html b/rhodecode/templates/login.html --- a/rhodecode/templates/login.html +++ b/rhodecode/templates/login.html @@ -2,23 +2,35 @@ <%inherit file="base/root.html"/> <%def name="title()"> - ${_('Log In')} · ${c.rhodecode_name} + ${_('Log In')} + %if c.rhodecode_name: + · ${c.rhodecode_name} + %endif + + +
-
- <% messages = h.flash.pop_messages() %> - % if messages: - - % endif -
+ <%include file="/base/flash_msg.html"/> -
-
${_('Log In to %s') % c.rhodecode_name}
+
${h.form(h.url.current(came_from=c.came_from))} @@ -51,7 +63,7 @@
- ${h.submit('sign_in',_('Sign In'),class_="ui-btn large")} + ${h.submit('sign_in',_('Sign In'),class_="btn")}