Rev 20 | Rev 23 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 19 | tom | 1 | <?php |
| 2 | |||
| 3 | require '../_taios.php'; |
||
| 4 | |||
| 21 | tom | 5 | $page = new Taios_Page('Manager Account', '../'); |
| 19 | tom | 6 | $page->drawHeader(); |
| 7 | $page->drawMiddle(); |
||
| 8 | |||
| 9 | $page->checkLoggedIn(); |
||
| 10 | |||
| 11 | $userID = $page->getGetID(); |
||
| 12 | $user = $page->getUserByID($userID); |
||
| 13 | |||
| 14 | if (($page->getLoggedInUser()->ID == $userID || $page->isUserAdmin($page->getLoggedInUser())) && $user) |
||
| 15 | { |
||
| 16 | ?> |
||
| 17 | |||
| 21 | tom | 18 | <p class="bold">Here you can edit your account.</p> |
| 19 | <p>Only change the password value if you want to change your password.</p> |
||
| 20 | <br /> |
||
| 21 | |||
| 19 | tom | 22 | <table> |
| 20 | tom | 23 | <tr><td class="bold">ID: </td><td><?php echo $user->ID; ?></td></tr> |
| 24 | <tr><td class="bold">AccessID: </td><td><?php echo $user->accessID; ?></td></tr> |
||
| 25 | <tr><td class="bold">Username: </td><td><?php echo $user->username; ?></td></tr> |
||
| 21 | tom | 26 | <tr><td class="bold">Password: </td><td><input type="password" name="password" /></td></tr> |
| 27 | <tr><td class="bold">Email Address: </td><td><input type="text" name="email" value="<?php echo $user->emailAddress; ?>" /></td></tr> |
||
| 28 | <tr><td class="bold">Name: </td><td><input type="text" name="name" value="<?php echo $user->name; ?>" /></td></tr> |
||
| 19 | tom | 29 | </table> |
| 30 | |||
| 31 | <?php |
||
| 32 | } |
||
| 33 | else |
||
| 34 | { |
||
| 35 | if (!$user) |
||
| 36 | { |
||
| 37 | drawError('No such user, #' . $userID); |
||
| 38 | } |
||
| 39 | else |
||
| 40 | { |
||
| 41 | drawError('You do not have permission to access this page.'); |
||
| 42 | } |
||
| 43 | } |
||
| 44 | |||
| 45 | $page->drawFooter(); |
||
| 46 | |||
| 47 | ?> |