default.php
3 days ago
default.xml
3 days ago
default_appointment.php
3 days ago
default_attendees.php
3 days ago
default_backbutton.php
3 days ago
default_countdown.php
3 days ago
default_locations.php
3 days ago
default_orderdetails.php
3 days ago
default_service.php
3 days ago
default_usernote.php
3 days ago
default_usernote_block.php
3 days ago
index.html
3 days ago
track.php
3 days ago
track.php
45 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package VikAppointments |
| 4 | * @subpackage core |
| 5 | * @author E4J s.r.l. |
| 6 | * @copyright Copyright (C) 2021 E4J s.r.l. All Rights Reserved. |
| 7 | * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL |
| 8 | * @link https://vikwp.com |
| 9 | */ |
| 10 | |
| 11 | // No direct access |
| 12 | defined('ABSPATH') or die('No script kiddies please!'); |
| 13 | |
| 14 | ?> |
| 15 | |
| 16 | <form action="<?php echo JRoute::rewrite('index.php?option=com_vikappointments&view=order' . ($this->itemid ? '&Itemid=' . $this->itemid : '')); ?>" name="orderform" id="orderform" method="get"> |
| 17 | |
| 18 | <div class="vaporderpagediv"> |
| 19 | |
| 20 | <div class="vapordertitlediv"><?php echo JText::translate('VAPORDERTITLE1'); ?></div> |
| 21 | |
| 22 | <div class="vapordercomponentsdiv"> |
| 23 | |
| 24 | <div class="vaporderinputdiv"> |
| 25 | <label class="vaporderlabel" for="vapordnum"><?php echo JText::translate('VAPORDERNUMBER'); ?>:</label> |
| 26 | <input class="" type="text" id="vapordnum" name="ordnum" size="32" /> |
| 27 | </div> |
| 28 | |
| 29 | <div class="vaporderinputdiv"> |
| 30 | <label class="vaporderlabel" for="vapordkey"><?php echo JText::translate('VAPORDERKEY'); ?>:</label> |
| 31 | <input class="" type="text" id="vapordkey" name="ordkey" size="32" /> |
| 32 | </div> |
| 33 | |
| 34 | <div class="vaporderinputdiv"> |
| 35 | <button type="submit" class="vap-btn blue"><?php echo JText::translate('VAPORDERSUBMITBUTTON'); ?></button> |
| 36 | </div> |
| 37 | |
| 38 | </div> |
| 39 | |
| 40 | </div> |
| 41 | |
| 42 | <input type="hidden" name="option" value="com_vikappointments" /> |
| 43 | <input type="hidden" name="view" value="order" /> |
| 44 | </form> |
| 45 |