Insert this into any tpl you want.
Code:
{if $login}
<form method="GET" action="order.php?">
<input type="text" name="orderid">
<input type="submit" value="View my order">
</form>
{/if}
or create new /skin1/order.tpl with code
Code:
{if $login}
{capture name=menu}
<form method="GET" action="order.php?">
<input type="text" name="orderid">
<input type="submit" value="View my order">
</form>
{/capture}
{ include file="menu.tpl" dingbats="dingbats_help.gif" menu_title=$lng.lbl_help menu_content=$smarty.capture.menu link_href="help.php"}
{/if}
and insert into home.tpl (or another) to left column this include
Code:
{include file="order.tpl"}
Comfortable thing! Enjoy!