Advertisement
Guest User

Untitled

a guest
May 22nd, 2012
423
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. <div id="accordionTag">
  2. <h3><a href="#"><span class="num">1</span> <span class="txt">Crie sua tag!</span></a></h3>
  3. <div>
  4. <?php echo $this->Form->create('Tag'); ?>
  5. <?php
  6. echo $this->Form->input('Tag.id');
  7. echo $this->Form->input('Tag.classification_id', array('label' => 'Você quer vender:'));
  8. echo "<div class='clear'></div>";
  9. echo $this->Form->input('Tag.category_id', array('label' => 'Escolha uma categoria:'));
  10. echo "<div class='clear'></div>";
  11. echo $this->Form->input('Tag.title', array('label' => false, 'placeholder' => 'Título do produto'));
  12. echo "<div class='clear'></div>";
  13. echo $this->Form->input('Tag.description', array('label' => false, 'placeholder' => 'Descrição do produto'));
  14. echo $this->Form->input('Tag.value', array('label' => false, 'placeholder' => 'Valor', 'type' => 'text'));
  15. ?>
  16. <div class="input">
  17. <label>Seu produto tem variação?</label>
  18. <?php echo $this->Form->checkbox('Tag.variation', array('value' => '1')); ?> Sim
  19. </div>
  20.  
  21. <div class="clear"></div>
  22.  
  23. <div id="variationForm" style="visibility: hidden;">
  24. <?php echo $this->Form->input('TagVariation.0.key', array('label' => 'Chave')); ?>
  25. <?php echo $this->Form->input('TagVariation.0.value', array('label' => 'Valor')); ?>
  26. </div> <!-- #variationForm -->
  27. <div class="clear"></div>
  28. </div>
  29. <h3><a href="#"><span class="num">2</span> <span class="txt">Adicione as imagens!</span></a></h3>
  30. <div>Second content</div>
  31. <h3><a href="#"><span class="num">3</span> <span class="txt">Customizando sua tag!</span></a></h3>
  32. <div>
  33. <?php
  34. echo $this->Form->input('Tag.quantity');
  35. echo $this->Form->input('Tag.imediate_delivery');
  36. echo $this->Form->input('Tag.shipment_type');
  37. echo $this->Form->input('Tag.duration');
  38. ?>
  39. </div>
  40. <h3><a href="#"><span class="num">4</span> <span class="txt">Como gostaria de receber?</span></a></h3>
  41. <div>
  42. <?php
  43. echo $this->Form->input('Tag.pagseguro_account');
  44. ?>
  45. </div>
  46. <h3><a href="#"><?php echo $this->Form->end(__('Submit')); ?></a></h3>
  47. </div> <!-- #accordionTag -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement