diff --git a/rhodecode/templates/register.html b/rhodecode/templates/register.html --- a/rhodecode/templates/register.html +++ b/rhodecode/templates/register.html @@ -1,96 +1,87 @@ ## -*- coding: utf-8 -*- - - - - ${_('Sign Up')} - ${c.rhodecode_name} - - - - - - +<%inherit file="base/root.html"/> - - -
- -
-
${_('Sign Up to')} ${c.rhodecode_name}
-
-
- ${h.form(url('register'))} -
- -
-
-
- -
-
- ${h.text('username',class_="medium")} -
-
- -
-
- -
-
- ${h.password('password',class_="medium")} -
-
- -
-
- -
-
- ${h.password('password_confirmation',class_="medium")} -
-
- -
-
- -
-
- ${h.text('name',class_="medium")} -
-
- -
-
- -
-
- ${h.text('lastname',class_="medium")} -
-
- -
-
- -
-
- ${h.text('email',class_="medium")} -
-
- -
-
- ${h.submit('sign_up','Sign Up',class_="ui-button")} - %if c.auto_active: -
${_('Your account will be activated right after registration')}
- %else: -
${_('Your account must wait for activation by administrator')}
- %endif -
-
-
-
- ${h.end_form()} -
+<%def name="title()"> + ${_('Sign Up')} - ${c.rhodecode_name} + + +
+ +
+
${_('Sign Up to')} ${c.rhodecode_name}
+
+
+ ${h.form(url('register'))} +
+ +
+
+
+ +
+
+ ${h.text('username',class_="medium")} +
+
+ +
+
+ +
+
+ ${h.password('password',class_="medium")} +
+
+ +
+
+ +
+
+ ${h.password('password_confirmation',class_="medium")} +
+
+ +
+
+ +
+
+ ${h.text('name',class_="medium")} +
+
+ +
+
+ +
+
+ ${h.text('lastname',class_="medium")} +
+
+ +
+
+ +
+
+ ${h.text('email',class_="medium")} +
+
+ +
+
+ ${h.submit('sign_up','Sign Up',class_="ui-button")} + %if c.auto_active: +
${_('Your account will be activated right after registration')}
+ %else: +
${_('Your account must wait for activation by administrator')}
+ %endif +
+
+
- - + ${h.end_form()} +
+