A Qcodo based CMS/ecommerce framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.0 KiB

12 years ago
  1. <div class="formControls">
  2. <table>
  3. <tr><td><?php $_CONTROL->txtTitle->RenderWithName(); ?></td></tr>
  4. <tr><td><?php $_CONTROL->lstMyPeople->RenderWithName(); ?></td></tr>
  5. <tr><td><?php $_CONTROL->txtStreet1->RenderWithName(); ?></td></tr>
  6. <tr><td><?php $_CONTROL->txtStreet2->RenderWithName(); ?></td></tr>
  7. <tr><td><?php $_CONTROL->txtSuburb->RenderWithName(); ?></td></tr>
  8. <tr><td><?php $_CONTROL->txtCity->RenderWithName(); ?></td></tr>
  9. <tr><td><?php $_CONTROL->txtCounty->RenderWithName(); ?></td></tr>
  10. <tr><td><?php $_CONTROL->lstZone->RenderWithName(); ?></td></tr>
  11. <tr><td><?php $_CONTROL->lstCountry->RenderWithName(); ?></td></tr>
  12. <tr><td><?php $_CONTROL->txtPostalCode->RenderWithName(); ?></td></tr>
  13. <tr><td><?php $_CONTROL->lstType->RenderWithName(); ?></td></tr>
  14. </div>
  15. </table>
  16. <div class="formActions">
  17. <table width="100%"><tr><td>
  18. <div id="save"><?php $_CONTROL->btnSave->Render(); ?></div>
  19. <div id="cancel"><?php $_CONTROL->btnCancel->Render(); ?></div>
  20. </td></tr></table>
  21. </div>