<?php/** * Order tracking form * * This template can be overridden by copying it to yourtheme/woocommerce/order/form-tracking.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates * @version 1.6.4 */if(!defined('ABSPATH')){exit;// Exit if accessed directly}global$post;?><formaction="<?phpechoesc_url(get_permalink($post->ID));?>"method="post"class="track_order"><p><?php_e('To track your order please enter your Order ID in the box below and press the "Track" button. This was given to you on your receipt and in the confirmation email you should have received.','woocommerce');?></p><pclass="form-row form-row-first"><labelfor="orderid"><?php_e('Order ID','woocommerce');?></label><inputclass="input-text"type="text"name="orderid"id="orderid"placeholder="<?phpesc_attr_e('Found in your order confirmation email.','woocommerce');?>"/></p><pclass="form-row form-row-last"><labelfor="order_email"><?php_e('Billing email','woocommerce');?></label><inputclass="input-text"type="text"name="order_email"id="order_email"placeholder="<?phpesc_attr_e('Email you used during checkout.','woocommerce');?>"/></p><divclass="clear"></div><pclass="form-row"><inputtype="submit"class="button"name="track"value="<?phpesc_attr_e('Track','woocommerce');?>"/></p><?phpwp_nonce_field('woocommerce-order_tracking');?></form>