Spade

Mini Shell

Directory:~$ /home/lmsyaran/www/administrator/components/com_invoices/templates/invoice/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/www/administrator/components/com_invoices/templates/invoice/invoicer.php

<?php

/*------------------------------------------------------------------------
# com_invoices - Invoice Manager for Joomla
# ------------------------------------------------------------------------
# author        Germinal Camps
# copyright       Copyright (C) 2012 - 2016 JoomlaThat.com. All Rights
Reserved.
# @license        http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites:       http://www.joomlathat.com
# Technical Support:  Forum - http://www.joomlathat.com/support
-------------------------------------------------------------------------*/

//no direct access
defined('_JEXEC') or die('Restricted access.');

?>

<div class="form-group">
  <label class="control-label col-md-2"
for="from_name"> <?php echo JText::_(
'INVOICER_NAME' ); ?></label>
  <div class="controls col-md-10">
    <input  class="form-control"
            type="text"
            name="from_name"
            id="from_name"
            size="80"
            maxlength="250"
            v-model="invoice.from_name" />
  </div>
</div>
<div class="form-group">
  <label class="control-label col-md-2"
for="from_address"> <?php echo JText::_(
'INVOICER_ADDRESS' ); ?></label>
  <div class="controls col-md-10">
    <textarea class="form-control"
              name="from_address"
              id="from_address"
              cols="40"
              rows="4"
              v-model="invoice.from_address"
              ></textarea>
  </div>
</div>
<div class="form-group">
  <label class="control-label col-md-2"
for="from_num"> <?php echo JText::_(
'INVOICER_FISCAL_NUM' ); ?></label>
  <div class="controls col-md-10">
    <input  class="form-control"
            type="text"
            name="from_num"
            id="from_num"
            size="80"
            maxlength="250"
            v-model="invoice.from_num" />
  </div>
</div>
<div class="form-group">
  <label class="control-label col-md-2"
for="from_url"> <?php echo JText::_(
'INVOICER_URL' ); ?></label>
  <div class="controls col-md-10">
    <input  class="form-control"
            type="text"
            name="from_url"
            id="from_url"
            size="80"
            maxlength="250"
            v-model="invoice.from_url" />
  </div>
</div>
<div class="form-group">
  <label class="control-label col-md-2"
for="from_email"> <?php echo JText::_(
'INVOICER_EMAIL' ); ?></label>
  <div class="controls col-md-10">
    <input  class="form-control"
            type="text"
            name="from_email"
            id="from_email"
            size="80"
            maxlength="250"
            v-model="invoice.from_email" />
  </div>
</div>
<div class="form-group">
  <label class="control-label col-md-2"
for="from_phone"> <?php echo JText::_(
'INVOICER_PHONE' ); ?></label>
  <div class="controls col-md-10">
    <input  class="form-control"
            type="text"
            name="from_phone"
            id="from_phone"
            size="80"
            maxlength="250"
            v-model="invoice.from_phone" />
  </div>
</div>