account.ejs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <div id="accountStrand" class="strand">
  2. <div class="strandHead">
  3. <h1 id="accountStrandTitle" class="strandTitle"></h1>
  4. </div>
  5. <div class="settings">
  6. <div class="settingsSection">
  7. <h2>ACCOUNT INFORMATION</h2>
  8. <label>EMAIL
  9. <input id="accountEmail" type="email">
  10. </label>
  11. <button id="accountUpdate" class="button">UPDATE</button>
  12. </div>
  13. <div class="settingsSection">
  14. <h2>SECURITY</h2>
  15. <button id="accountShowPassword" class="button">CHANGE PASSWORD</button>
  16. <div id="changePasswordBox"style="display:none;">
  17. <label>CURRENT PASSWORD
  18. <input id="accountCurrentPassword" type="password">
  19. </label>
  20. <label>NEW PASSWORD
  21. <input id="accountNewPassword" type="password">
  22. </label>
  23. <label>CONFIRM NEW PASSWORD
  24. <input id="accountConfirmPassword" type="password">
  25. </label>
  26. <div id="accountButtonBox" class="buttonBox">
  27. <button id="cancelPasswordChange" class="button">CANCEL</button>
  28. <button id="changePasswordButton" class="button">CHANGE PASSWORD</button>
  29. </div>
  30. <p>* This will log you out of all current sessions</p>
  31. </div>
  32. </div>
  33. </div>
  34. </div>