This is a login box module that lets users login from any of the pages. This box is placed on left or right column and when the client signs in by using this form, the form changes as 'welcome name surname' and remains like that at all pages until the client logs off.
Legend: 
Download

Report
OPTIONAL, Change style text in login customer name.
In your styleshett add just before end:
.login_name{
font-size: 11px;
font-weight: bold;
text-decoration: none;
color: #E55C19;
}
Or:
Edit in file includes/boxes/memberlogin.php
find: $in_out_action.='<a class="login_name" <br>';
Change for any class of your stylesheet.
Full package.
missing PHP tag
catalogincludeslanguagesenglishmemberlogin.php
<?PHP
attached corrected version
Añadido identificación por genero del user + botones para account y logout.
Solamente para los idiomas Español e Inglés.
----------------------------------------------------------------------------
Added Gender user id + buttons for account and logout.
Only in languages spanish and english.
Same Full package below but with romanian translation included
Full package
add a link fot create account
añadido link para crear cueta
For "visualmtb" my contrib was not important. In October, I downloaded the contribution, and I saw a traduction error in spanish. I uploaded all archives with the fixed error.
<edit: no flaming war please>
----------------------------------------------
I've added my "october contrib" with italian language, and called "loginbox v2.2b" one more time.
This contrib is bassed on "jerys1974" 's contrib, included the visualmtb s' and my old archives (included the readme).
PS. In italian contrib, you can see some ".DS Store" archives for windows contrib. (deleted)
----------------------------------------------
Aggiunto modulo traduzione italiano
update italian language
Login box must not be active when you enter create_account, order_info(if your running PWA) and login. Here is an example of fix:
if ((!tep_session_is_registered('customer_id')) && (basename ($PHP_SELF,".php") != 'login') && (basename ($PHP_SELF,".php") != 'order_info') && (basename ($PHP_SELF,".php") != 'create_account')) {
include(DIR_WS_BOXES . 'memberlogin.php');
}
If you are having a problem login into your site through your login.php page, after installing this mod, you must include this in either column_right or _left.php or where you call the loginbox:
if ((!tep_session_is_registered('customer_id')) && (basename ($PHP_SELF,".php") != 'login')) {
include(DIR_WS_BOXES . 'memberlogin.php');
}
Some traduction errors fixed. Only for spanish users.
Thanks
Fixed some errors in the spellings.
Appologies.
Fatmcgav
This is a further update to this contrib, to make the block fully compliant.
Changes include:
-- Fatmcgav -- 08/03 ------------
1) Full Multi-language support, including Box Headers
2) Oscom Compliant auto-linking - forgotton password and style links.
3) Streamlined code, and layout.
---------------------------------
This is just a compliancy edit - full credit goes to the original author.
>Translated to German and Spanish.
>Added Link "Fogotten Password" (also added to language files with translation).
Just add this simple html-code to the memberlogin.php (includes/boxes)
to have the forgotten password link in the box under the login button.
All coding php credits to original author
osCommerce RULES, don't you just love it, Eangkarn
<br>
<a href="http://www.yourgayboys.com/shop/password_forgotten.php">Password Forgotton?</a>
1) Multiple language support added
2) Partly rewritten to match with Oscommerce structure.
3) Logout and My account links have been added.
4) Some problems that some people faced has been fixed to provide easier usage and installation
Change
"<?php require(DIR_WS_BOXES . 'loginboxright.php'); ?>"
to
"require(DIR_WS_BOXES . 'loginboxmain.php');"
Dave Wood
This is a login box module that lets users login from any of the pages. This box is placed on left or right column and when the client signs in by using this form, the form changes as 'welcome name surname' and remains like that at all pages until the client logs off.