Thread: Login Link
View Single Post
  #3  
Old 04-24-2003, 07:10 AM
  B00MER's Avatar 
B00MER B00MER is offline
 

X-Guru
  
Join Date: Sep 2002
Location: Keller, TX (Cart-Lab.com)
Posts: 3,165
 

Default

edit [skin1]/common_templates.tpl and add something similar:

Code:
{elseif $main eq "mainlogin"} {include file="customer/main/login.tpl"}
Note, place your login form from, auth.tpl in customer/main/login.tpl

Now just create the login.php file, with something like:

Code:
<? require "../smarty.php"; require "../config.php"; @include "./https.php"; require "./auth.php"; $smarty->assign("main","mainlogin"); $smarty->display("customer/home.tpl"); ?>

Should do the trick
__________________
Cart-Lab - 100+ Social Bookmarks for X-Cart.
Reply With Quote