When you go to that page and you view source you'll see:
<INPUT type="hidden" name="redirect" value="{$redirect}">
That means that your page isn't processing your smarty, so you need to specify this value.
Try:
<input type=hidden name=redirect value="customer">
|