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.

manage-post.html 1.3KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Manage-Posts</title>
  7. <link rel="stylesheet" text="text/css" href="styles.css">
  8. <script src="manage-post.js"></script>
  9. <!--Font Awesome Icons CDN-->
  10. <link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
  11. </head>
  12. <body>
  13. <div class=main>
  14. <div class="container user-container">
  15. <div class="header">
  16. <h1>Manage Posts</h1>
  17. </div>
  18. <div class="ButtonRow">
  19. <button class="logoutButton" id="lgoBtn">Logout</button>
  20. <div class="rightButtons">
  21. <button class="manageButton" id="mngBtn">Manage Group</button>
  22. </div>
  23. </div>
  24. <div class="table" id="table">
  25. </div>
  26. <div class="ButtonRow">
  27. <div></div>
  28. <div class="rightButtons">
  29. <button class="icon-backward , backButton" id="pageDown"></button>
  30. <button class="icon-forward , nextButton" id="pageUp"></button>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. </body>
  36. </html>