diff --git a/app/views/account/login.rhtml b/app/views/account/login.rhtml index 1a8db48..a851b7c 100644 --- a/app/views/account/login.rhtml +++ b/app/views/account/login.rhtml @@ -11,10 +11,12 @@ :html => { :help => _('If you are a registered user, enter your username and password to be authenticated.')+'

'+_('To join on this environment, click on "I want to be an user!".')+'

'+_('If you forgot your password, click on "I forgot my password!" link.') } do |f| %> <%= f.text_field :login, + :id => ( lightbox? ? 'lightbox_' : '' ) + 'user_login', :help => _('Here goes the nickname that you give on the registration.'), :onchange => 'this.value = convToValidLogin( this.value )' %> <%= f.password_field :password, + :id => ( lightbox? ? 'lightbox_' : '' ) + 'user_password', :help => _('your password is personal, protect it.') %> <% button_bar do %> @@ -36,7 +38,7 @@ <% if lightbox? %> <% end %> diff --git a/app/views/layouts/application.rhtml b/app/views/layouts/application.rhtml index 98e825d..4aa9f59 100644 --- a/app/views/layouts/application.rhtml +++ b/app/views/layouts/application.rhtml @@ -93,6 +93,10 @@