Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <div id="accordionTag">
- <h3><a href="#"><span class="num">1</span> <span class="txt">Crie sua tag!</span></a></h3>
- <div>
- <?php echo $this->Form->create('Tag'); ?>
- <?php
- echo $this->Form->input('Tag.id');
- echo $this->Form->input('Tag.classification_id', array('label' => 'Você quer vender:'));
- echo "<div class='clear'></div>";
- echo $this->Form->input('Tag.category_id', array('label' => 'Escolha uma categoria:'));
- echo "<div class='clear'></div>";
- echo $this->Form->input('Tag.title', array('label' => false, 'placeholder' => 'Título do produto'));
- echo "<div class='clear'></div>";
- echo $this->Form->input('Tag.description', array('label' => false, 'placeholder' => 'Descrição do produto'));
- echo $this->Form->input('Tag.value', array('label' => false, 'placeholder' => 'Valor', 'type' => 'text'));
- ?>
- <div class="input">
- <label>Seu produto tem variação?</label>
- <?php echo $this->Form->checkbox('Tag.variation', array('value' => '1')); ?> Sim
- </div>
- <div class="clear"></div>
- <div id="variationForm" style="visibility: hidden;">
- <?php echo $this->Form->input('TagVariation.0.key', array('label' => 'Chave')); ?>
- <?php echo $this->Form->input('TagVariation.0.value', array('label' => 'Valor')); ?>
- </div> <!-- #variationForm -->
- <div class="clear"></div>
- </div>
- <h3><a href="#"><span class="num">2</span> <span class="txt">Adicione as imagens!</span></a></h3>
- <div>Second content</div>
- <h3><a href="#"><span class="num">3</span> <span class="txt">Customizando sua tag!</span></a></h3>
- <div>
- <?php
- echo $this->Form->input('Tag.quantity');
- echo $this->Form->input('Tag.imediate_delivery');
- echo $this->Form->input('Tag.shipment_type');
- echo $this->Form->input('Tag.duration');
- ?>
- </div>
- <h3><a href="#"><span class="num">4</span> <span class="txt">Como gostaria de receber?</span></a></h3>
- <div>
- <?php
- echo $this->Form->input('Tag.pagseguro_account');
- ?>
- </div>
- <h3><a href="#"><?php echo $this->Form->end(__('Submit')); ?></a></h3>
- </div> <!-- #accordionTag -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement