View Single Post
  #12  
Old 11-05-2004, 08:37 AM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

1) Download home.php and rename it myaccount.php

2) Open myaccount.php

Find:

Code:
$smarty->assign("main","catalog");

Change to:

Code:
$smarty->assign("main","myaccount");

3) Open: /skin1/customer/home_main.tpl

Find:

Code:
{else} {include file="common_templates.tpl"} {/if}

BEFORE that add:

Code:
{elseif $main eq "myaccount"} {include file="customer/main/myaccount.tpl"}

4) Create a new file called: myaccount.tpl

In it put this code:

Code:
<h3>{$lng.lbl_authentication}</h3> <table border="0" width="100%" cellpadding="2"> <tr> <td valign="top"> {capture name=dialog} <TABLE border="0"> {if $config.General.use_https_login eq "Y" and $usertype eq "C"} {assign var="form_url" value=$https_location} {else} {assign var="form_url" value=$current_location} {/if} <FORM action="{$form_url}/include/login.php" method="post" name=errorform> <TR> <TD height="10" width="78" class="FormButton">{$lng.lbl_login}</TD> <TD width="10" height="10"><FONT class="Star">*</FONT></TD> <TD width="282" height="10"> <INPUT type="text" name="username" size="30"> </TD> </TR> <TR> <TD height="10" width="78" class="FormButton">{$lng.lbl_password}</TD> <TD width="10" height="10"><FONT class="Star">*</FONT></TD> <TD width="282" height="10"> <INPUT type="password" name="password" size="30"> {if $active_modules.Simple_Mode ne "" and $usertype ne "C" and $usertype ne "B"} <INPUT type="hidden" name="usertype" value="P"> {else} <INPUT type="hidden" name="usertype" value="{$usertype}"> {/if} <INPUT type="hidden" name="redirect" value="{$redirect}"> <INPUT type="hidden" name="mode" value="login"> </TD> </TR> <TR> <TD height="10" width="78" class="FormButton"></TD> <TD width="10" height="10"></TD> <TD width="282" height="10" class="ErrorMessage"> { if $main eq "login_incorrect"} {$lng.err_invalid_login} {/if} </TD> </TR> <TR> <TD height="10" width="78" class="FormButton"></TD> <TD width="10" height="10" class="FormButton"></TD> <TD width="282" height="10"> {if $js_enabled} {include file="buttons/submit.tpl" href="javascript:document.errorform.submit()" js_to_href="Y"} {else} {include file="submit_wo_js.tpl" value=$lng.lbl_submit} {/if} </TD> </TR> </FORM> </TABLE> {/capture} {include file="dialog.tpl" title=$lng.lbl_authentication content=$smarty.capture.dialog extra="width=100%"} </td> </tr> <tr> <td valign="top"> {include file="customer/main/register.tpl"} </td> </tr> </table>

5) Upload myaccount.php to the same directory as your home.php

6) Reupload home_main.tpl to the same place

7) Upload myaccount.tpl to /skin1/customer/main/

Load your myaccount.php in your browser.
Reply With Quote