changeset 979:2e026e3053ae beta

login page and registration page now share the same application name as other views
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 31 Jan 2011 01:22:22 +0100
parents 6d2239363c81
children 01eb7098681e
files rhodecode/templates/login.html rhodecode/templates/register.html
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/templates/login.html	Sun Jan 30 23:36:17 2011 +0100
+++ b/rhodecode/templates/login.html	Mon Jan 31 01:22:22 2011 +0100
@@ -15,7 +15,7 @@
 <div id="login">
             <!-- login -->
             <div class="title top-left-rounded-corner top-right-rounded-corner">
-                <h5>${_('Sign In to rhodecode')}</h5>
+                <h5>${_('Sign In to')} ${c.rhodecode_name}</h5>
             </div>
             <div class="inner">            
                 ${h.form(h.url.current(came_from=c.came_from))}
--- a/rhodecode/templates/register.html	Sun Jan 30 23:36:17 2011 +0100
+++ b/rhodecode/templates/register.html	Mon Jan 31 01:22:22 2011 +0100
@@ -15,7 +15,7 @@
 		<div id="register">
 			
 			<div class="title top-left-rounded-corner top-right-rounded-corner">
-				<h5>${_('Sign Up to RhodeCode')}</h5>
+				<h5>${_('Sign Up to')} ${c.rhodecode_name}</h5>
 			</div>
 			<div class="inner">
 			    ${h.form(url('register'))}