diff --git a/rhodecode/templates/login.html b/rhodecode/templates/login.html --- a/rhodecode/templates/login.html +++ b/rhodecode/templates/login.html @@ -1,82 +1,72 @@ ## -*- coding: utf-8 -*- - - - - ${_('Sign In')} - ${c.rhodecode_name} - - - - - - +<%inherit file="base/root.html"/> + +<%def name="title()"> + ${_('Sign In')} - ${c.rhodecode_name} + - - -
-
- <% messages = h.flash.pop_messages() %> - % if messages: - - % endif -
- -
-
${_('Sign In to')} ${c.rhodecode_name}
-
-
- ${h.form(h.url.current(came_from=c.came_from))} -
- +
+
+ <% messages = h.flash.pop_messages() %> + % if messages: +
    + % for message in messages: +
  • ${message}
  • + % endfor +
+ % endif +
+ +
+
${_('Sign In to')} ${c.rhodecode_name}
+
+
+ ${h.form(h.url.current(came_from=c.came_from))} +
+ -
-
-
- -
-
- ${h.text('username',class_='focus',size=40)} -
- -
-
-
- -
-
- ${h.password('password',class_='focus',size=40)} -
- -
- ##
- ##
- ## - ## - ##
- ##
-
- ${h.submit('sign_in','Sign In',class_="ui-button")} -
+
+
+
+ +
+
+ ${h.text('username',class_='focus',size=40)} +
+ +
+
+
+ +
+
+ ${h.password('password',class_='focus',size=40)}
- - - + +
+ ##
+ ##
+ ## + ## + ##
+ ##
+
+ ${h.submit('sign_in','Sign In',class_="ui-button")} +
+
+ + + - -
- ${h.end_form()} -
- +
- - - + ${h.end_form()} +
+ +
\ No newline at end of file