summaryrefslogtreecommitdiffstats
path: root/templates/show_account.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_account.inc.php')
-rw-r--r--templates/show_account.inc.php52
1 files changed, 26 insertions, 26 deletions
diff --git a/templates/show_account.inc.php b/templates/show_account.inc.php
index 84b8ecf4..0cf951f8 100644
--- a/templates/show_account.inc.php
+++ b/templates/show_account.inc.php
@@ -1,5 +1,5 @@
<?php
-/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
+/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
/**
*
* LICENSE: GNU General Public License, version 2 (GPLv2)
@@ -26,40 +26,40 @@
<form method="post" name="preferences" action="<?php echo Config::get('web_path'); ?>/preferences.php?action=update_user" enctype="multipart/form-data">
<table class="tabledata">
<tr>
- <td><?php echo T_('Name'); ?>:</td>
- <td>
- <input type="text" name="fullname" size="27" value="<?php echo scrub_out($client->fullname); ?>" />
- </td>
+ <td><?php echo T_('Name'); ?>:</td>
+ <td>
+ <input type="text" name="fullname" size="27" value="<?php echo scrub_out($client->fullname); ?>" />
+ </td>
</tr>
<tr>
- <td><?php echo T_('E-mail'); ?>:</td>
- <td>
- <input type="text" name="email" size="27" value="<?php echo scrub_out($client->email); ?>" />
- </td>
+ <td><?php echo T_('E-mail'); ?>:</td>
+ <td>
+ <input type="text" name="email" size="27" value="<?php echo scrub_out($client->email); ?>" />
+ </td>
</tr>
<tr>
- <td><?php echo T_('New Password'); ?>:</td>
- <td>
- <?php Error::display('password'); ?>
- <input type="password" name="password1" size="27" />
- </td>
+ <td><?php echo T_('New Password'); ?>:</td>
+ <td>
+ <?php Error::display('password'); ?>
+ <input type="password" name="password1" size="27" />
+ </td>
</tr>
<tr>
- <td><?php echo T_('Confirm Password'); ?>:</td>
- <td>
- <input type="password" name="password2" size="27" />
- </td>
+ <td><?php echo T_('Confirm Password'); ?>:</td>
+ <td>
+ <input type="password" name="password2" size="27" />
+ </td>
</tr>
<tr>
- <td><?php echo T_('Clear Stats'); ?>:</td>
- <td>
- <input type="checkbox" name="clear_stats" value="1" />
- </td>
+ <td><?php echo T_('Clear Stats'); ?>:</td>
+ <td>
+ <input type="checkbox" name="clear_stats" value="1" />
+ </td>
</tr>
</table>
<div class="formValidation">
- <input type="hidden" name="user_id" value="<?php echo scrub_out($client->id); ?>" />
- <?php echo Core::form_register('update_user'); ?>
- <input type="hidden" name="tab" value="<?php echo scrub_out($_REQUEST['tab']); ?>" />
- <input class="button" type="submit" value="<?php echo T_('Update Account'); ?>" />
+ <input type="hidden" name="user_id" value="<?php echo scrub_out($client->id); ?>" />
+ <?php echo Core::form_register('update_user'); ?>
+ <input type="hidden" name="tab" value="<?php echo scrub_out($_REQUEST['tab']); ?>" />
+ <input class="button" type="submit" value="<?php echo T_('Update Account'); ?>" />
</div>