userProfiles.html 780 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>User Profiles</title>
  5. </head>
  6. <body>
  7. <div id="userProfilesPage" data-role="page" class="page type-interior userProfilesConfigurationPage">
  8. <div data-role="content">
  9. <div class="content-primary">
  10. <div class="readOnlyContent">
  11. <p id="pAddUser">
  12. <button type="button" data-icon="plus" onclick="Dashboard.navigate('editUser.html');">
  13. Add User
  14. </button>
  15. </p>
  16. <ul id="ulUserProfiles" data-role="listview" data-inset="true" data-auto-enhanced="false" data-split-icon="minus"></ul>
  17. </div>
  18. </div>
  19. </div>
  20. </div>
  21. </body>
  22. </html>