1 |
<h1><?php echo $sg->translator->_g("Edit Profile"); ?></h1> |
1 |
<h1><?php echo $sg->translator->_g("Edit Profile"); ?></h1> |
2 |
|
2 |
|
3 |
<form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post"> |
3 |
<form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post"> |
4 |
<table class="formTable"> |
4 |
<table class="formTable"> |
5 |
<input type="hidden" name="action" value="saveprofile" /> |
5 |
<input type="hidden" name="action" value="saveprofile" /> |
6 |
<input type="hidden" name="user" value="<?php echo $sg->user->username; ?>" /> |
6 |
<input type="hidden" name="user" value="<?php echo $sg->user->username; ?>" /> |
7 |
<tr> |
7 |
<tr> |
8 |
<td><?php echo $sg->translator->_g("Username"); ?></td> |
8 |
<td><?php echo $sg->translator->_g("Username"); ?></td> |
9 |
<td><strong><?php echo $sg->user->username; ?></strong></td> |
9 |
<td><strong><?php echo $sg->user->username; ?></strong></td> |
10 |
</tr> |
10 |
</tr> |
11 |
<tr> |
11 |
<tr> |
12 |
<td><?php echo $sg->translator->_g("Email"); ?></td> |
12 |
<td><?php echo $sg->translator->_g("Email"); ?></td> |
13 |
<td><input type="input" name="sgEmail" value="<?php echo $sg->user->email; ?>" /></td> |
13 |
<td><input type="input" name="sgEmail" value="<?php echo $sg->user->email; ?>" /></td> |
14 |
</tr> |
14 |
</tr> |
15 |
<tr> |
15 |
<tr> |
16 |
<td><?php echo $sg->translator->_g("Full name"); ?></td> |
16 |
<td><?php echo $sg->translator->_g("Full name"); ?></td> |
17 |
<td><input type="input" name="sgFullname" value="<?php echo $sg->user->fullname; ?>" /></td> |
17 |
<td><input type="input" name="sgFullname" value="<?php echo $sg->user->fullname; ?>" /></td> |
18 |
</tr> |
18 |
</tr> |
19 |
<tr><td><?php echo $sg->translator->_g("Description"); ?></td> |
19 |
<tr><td><?php echo $sg->translator->_g("Description"); ?></td> |
20 |
<td><input type="input" name="sgDescription" value="<?php echo $sg->user->description; ?>" /></td> |
20 |
<td><input type="input" name="sgDescription" value="<?php echo $sg->user->description; ?>" /></td> |
21 |
</tr> |
21 |
</tr> |
22 |
<tr> |
22 |
<tr> |
23 |
<td></td> |
23 |
<td></td> |
24 |
<td><input type="submit" class="button" value="<?php /*"*/ echo $sg->translator->_g("Save Changes") ?>" /></td> |
24 |
<td><input type="submit" class="button" value="<?php /*"*/ echo $sg->translator->_g("Save Changes") ?>" /></td> |
25 |
</tr> |
25 |
</tr> |
26 |
</table> |
26 |
</table> |
27 |
</form> |
27 |
</form> |