summaryrefslogtreecommitdiffstatshomepage
path: root/templates/editprofile.tpl.php
diff options
context:
space:
mode:
authorGravatar cweiske2009-10-03 14:00:33 +0000
committerGravatar cweiske2009-10-03 14:00:33 +0000
commit29422fa55379aa61a61019b832c83dab6d450264 (patch)
treee5884ce6fed2cf1d02165a1b5667b99cd80262e5 /templates/editprofile.tpl.php
parentb8b1d06b2d899658fae64d0de506439ca0ea067c (diff)
downloadscuttle-29422fa55379aa61a61019b832c83dab6d450264.tar.gz
scuttle-29422fa55379aa61a61019b832c83dab6d450264.zip
move files to new locations
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@386 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/editprofile.tpl.php')
-rw-r--r--templates/editprofile.tpl.php73
1 files changed, 0 insertions, 73 deletions
diff --git a/templates/editprofile.tpl.php b/templates/editprofile.tpl.php
deleted file mode 100644
index b55d250..0000000
--- a/templates/editprofile.tpl.php
+++ /dev/null
@@ -1,73 +0,0 @@
-<?php
-$this->includeTemplate($GLOBALS['top_include']);
-?>
-
-<form action="<?php echo $formaction; ?>" method="post">
-<input type="hidden" name="token" value="<?php echo $token; ?>">
-
-</table>
-
-<h3><?php echo T_('Account Details'); ?></h3>
-
-<table class="profile">
-<tr>
- <th align="left"><?php echo T_('Username'); ?></th>
- <td><?php echo $user; ?></td>
- <td></td>
-</tr>
-<tr>
- <th align="left"><?php echo T_('New Password'); ?></th>
- <td><input type="password" name="pPass" size="20" /></td>
- <td></td>
-</tr>
-<tr>
- <th align="left"><?php echo T_('Confirm Password'); ?></th>
- <td><input type="password" name="pPassConf" size="20" /></td>
- <td></td>
-</tr>
-<tr>
- <th align="left"><?php echo T_('E-mail'); ?></th>
- <td><input type="text" name="pMail" size="75" value="<?php echo filter($objectUser->getEmail(), 'xml'); ?>" /></td>
- <td>&larr; <?php echo T_('Required'); ?></td>
-</tr>
-</table>
-
-<h3><?php echo T_('Personal Details'); ?></h3>
-
-<table class="profile">
-<tr>
- <th align="left"><?php echo T_('Name'); ?></th>
- <td><input type="text" name="pName" size="75" value="<?php echo filter($objectUser->getName(), 'xml'); ?>" /></td>
-</tr>
-<tr>
- <th align="left"><?php echo T_('Homepage'); ?></th>
- <td><input type="text" name="pPage" size="75" value="<?php echo filter($objectUser->getHomepage()); ?>" /></td>
-</tr>
-<tr>
- <th align="left"><?php echo T_('Description'); ?></th>
- <td><textarea name="pDesc" cols="75" rows="10"><?php echo $objectUser->getContent(); ?></textarea></td>
-</tr>
-<tr>
- <th></th>
- <td><input type="submit" name="submitted" value="<?php echo T_('Save Changes'); ?>" /></td>
-</tr>
-</table>
-<h3><?php echo T_('Actions'); ?></h3>
-<table class="profile">
-<tr>
- <th align="left"><?php echo T_('Export bookmarks'); ?></th>
- <td>
- <a href="../api/export_html.php"><?php echo T_('HTML file (for browsers)')?></a> /
- <a href="../api/posts/all"><?php echo T_('XML file (like del.icio.us)')?></a> /
- <a href="../api/export_csv.php"><?php echo T_('CSV file (for spreadsheet tools)')?></a>
- </td>
-</tr>
-<tr><th> </th><td> </td></tr>
-<tr><th> </th><td> </td></tr>
-</table>
-
-</form>
-
-<?php
-$this->includeTemplate($GLOBALS['bottom_include']);
-?>