add-user.phtml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <div class="ui-widget ui-widget-content block-shadow clearfix padded-strong user-management">
  2. <h2><?php echo _("Manage Users") ?></h2>
  3. <div class="user-list-wrapper">
  4. <div id="users_wrapper" class="dataTables_wrapper">
  5. <div class="button-holder">
  6. <button type="button" id="add_user_button" name="search_add_group" class="ui-button ui-widget ui-state-default ui-button-text-icon-primary">
  7. <span class="ui-icon ui-icon-plusthick"></span>
  8. <span class="ui-button-text"><?php echo _("New User")?></span>
  9. </button>
  10. </div>
  11. <table cellspacing="0" cellpadding="0" style="" id="users_datatable" class="datatable">
  12. <thead>
  13. <tr>
  14. <th><?php echo _("id") ?></th>
  15. <th><?php echo _("Username") ?></th>
  16. <th><?php echo _("First Name")?></th>
  17. <th><?php echo _("Last Name")?></th>
  18. <th><?php echo _("User Type")?></th>
  19. <th>&nbsp;</th>
  20. </tr>
  21. </thead>
  22. <tbody></tbody>
  23. </table>
  24. </div>
  25. </div>
  26. <div class="user-data simple-formblock" id="user_details">
  27. <?php echo $this->successMessage ?>
  28. <fieldset class="padded">
  29. <?php echo $this->form ?>
  30. </fieldset>
  31. </div>
  32. </div>