From f4ebc5097ea040ab328f1209ac0c72cd4c537d35 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Thu, 14 Aug 2014 19:48:09 -0500 Subject: [PATCH] Log In/Sign Up instead of login/register --- VERSION | 2 +- applications/welcome/views/default/user.html | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 9e481008..bebadc14 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.10.0-trunk+timestamp.2014.08.14.19.39.36 +Version 2.10.0-trunk+timestamp.2014.08.14.19.47.45 diff --git a/applications/welcome/views/default/user.html b/applications/welcome/views/default/user.html index c2a48a30..0e25d790 100644 --- a/applications/welcome/views/default/user.html +++ b/applications/welcome/views/default/user.html @@ -1,6 +1,8 @@ {{extend 'layout.html'}} -

{{=T( request.args(0).replace('_',' ').capitalize() )}}

+

+{{=T('Sign Up') if request.args(0) == 'register' else T('Log In') if request.args(0) == 'login' else T(request.args(0).replace('_',' ').title())}} +