userPreferencesView.inc 970 B

1234567891011121314151617181920212223242526
  1. <?=$header?>
  2. <div id="contentContainer">
  3. <div id="content">
  4. Settings for <?=$username?>
  5. <form method="POST" action="?a=submitpreferences">
  6. <!-- <label for="email">Email:</label> <input id="email" name="email" type="text" value="<?=$email?>" />
  7. <br /> -->
  8. <label for="displayName">Display Name:</label> <input id="displayName" name="displayName" type="text" value="<?=$displayName?>"/>
  9. <br />
  10. <input type="submit" value="Save" />
  11. </form>
  12. <!-- <form method="POST" action="?a=changepassword">
  13. <label for="oldPass">Old password:</label> <input id="oldPass" name="oldPass" type="text" />
  14. <br />
  15. <label for="newPass1">New password:</label> <input id="newPass1" name="newPass1" type="text" />
  16. <br />
  17. <label for="newPass2">New password (again):</label> <input id="newPass2" name="newPass2" type="text" />
  18. <br />
  19. <input type="submit" value="Change Password">
  20. </form> -->
  21. </div>
  22. </div>
  23. <?php include "sidebar.inc"; ?>
  24. </body>
  25. </html>