Simple image host.
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.

settings.html 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. {{template#head}}
  5. </head>
  6. <body>
  7. {{template#body}}
  8. <div id="settings" class="container small-width-container">
  9. <div class="title" href="/profile?{{session#userId}}">{{session#username}}</div>
  10. <form id="collections-form" class="container small-width bordered">
  11. <div class="title">My Collections</div>
  12. <div class="submit-container">
  13. <a class="btn btn-default" href="/profile?{{session#userId}}">My Collections</a>
  14. </div>
  15. </form>
  16. <form id="password-form" class="container small-width bordered">
  17. <div class="title">Change Password</div>
  18. <div class="form-group">
  19. <label>Old Password<br>
  20. <input type="password" id="password-old">
  21. </label>
  22. </div>
  23. <div class="form-group">
  24. <label>New Password<br>
  25. <input type="password" id="password-new">
  26. </label>
  27. </div>
  28. <div class="form-group">
  29. <label>Repeat Password<br>
  30. <input type="password" id="password-repeat">
  31. </label>
  32. </div>
  33. <div class="submit-container">
  34. <button type="submit" class="btn btn-default">Submit</button>
  35. </div>
  36. </form>
  37. <form id="logout-form" class="container small-width bordered">
  38. <div class="title">Log Out</div>
  39. <div class="submit-container">
  40. <button type="submit" class="btn btn-default">Log Out</button>
  41. </div>
  42. </form>
  43. </div>
  44. </body>
  45. </html>