2 $this->includeTemplate($GLOBALS['top_include']);
5 <form action="<?php echo $formaction; ?>" method="post">
7 <h3><?php echo T_('Account Details'); ?></h3>
9 <table class="profile">
11 <th align="left"><?php echo T_('Username'); ?></th>
12 <td><?php echo $user; ?></td>
16 <th align="left"><?php echo T_('New Password'); ?></th>
17 <td><input type="password" name="pPass" size="20" /></td>
21 <th align="left"><?php echo T_('Confirm Password'); ?></th>
22 <td><input type="password" name="pPassConf" size="20" /></td>
26 <th align="left"><?php echo T_('E-mail'); ?></th>
27 <td><input type="text" name="pMail" size="75" value="<?php echo filter($row['email'], 'xml'); ?>" /></td>
28 <td>← <?php echo T_('Required'); ?></td>
32 <h3><?php echo T_('Personal Details'); ?></h3>
34 <table class="profile">
36 <th align="left"><?php echo T_('Name'); ?></th>
37 <td><input type="text" name="pName" size="75" value="<?php echo filter($row['name'], 'xml'); ?>" /></td>
40 <th align="left"><?php echo T_('Homepage'); ?></th>
41 <td><input type="text" name="pPage" size="75" value="<?php echo filter($row['homepage'], 'xml'); ?>" /></td>
44 <th align="left"><?php echo T_('Description'); ?></th>
45 <td><textarea name="pDesc" cols="75" rows="10"><?php echo $row['uContent']; ?></textarea></td>
49 <td><input type="submit" name="submitted" value="<?php echo T_('Save Changes'); ?>" /></td>
55 $this->includeTemplate($GLOBALS['bottom_include']);