Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion templates/customer/guest-login.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@
{/block}

{block name='page_content'}
<form id="guestOrderTrackingForm" action="{$urls.pages.guest_tracking}" method="get">
{* Submitted with POST so the shopper's email address does not end up in the URL, where it reaches
analytics as a page path, the browser history, the access log and any referrer. The controller reads
the fields with Tools::getValue(), which takes POST as well, and links that already carry the
parameters in a query string keep working. *}
<form id="guestOrderTrackingForm" action="{$urls.pages.guest_tracking}" method="post">
<header>
<p>{l s='To track your order, please enter the following information:' d='Shop.Theme.Customeraccount'}</p>
</header>
Expand Down
Loading