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.

user-login.html 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738
  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>User-Page</title>
  7. <link rel="stylesheet" text="text/css" href="styles.css">
  8. <script src="user.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>Benutzerseite</h1>
  17. </div>
  18. <div class="ButtonRow">
  19. <button class="logoutButton" id="lgoBtn">Logout</button>
  20. <button onclick="location.href='/newPost'" id="addBtn">&plus;</button>
  21. <div class="" id="overlay"></div>
  22. </div>
  23. <div class="table" id="table">
  24. </div>
  25. <div class="ButtonRow">
  26. <button class="logoutButton" id="changePwBtn">Change Password</button>
  27. <div class="rightButtons">
  28. <button class="icon-backward , backButton" id="pageDown"></button>
  29. <button class="icon-forward , nextButton" id="pageUp"></button>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. </body>
  35. </html>