diff options
author | Mark Pemberton <mpemberton5@gmail.com> | 2011-05-13 14:26:51 -0400 |
---|---|---|
committer | Mark Pemberton <mpemberton5@gmail.com> | 2011-05-13 14:26:51 -0400 |
commit | ec345f7a1343769abdf3f5920a0732b24726b733 (patch) | |
tree | 1a65f2f0bea89b16f5c8e93264b67e2927570677 /data/templates/editprofile.tpl.php | |
parent | 803b83fb7d051593066b5224a59fbf3ec6efc824 (diff) | |
download | semanticscuttle-ec345f7a1343769abdf3f5920a0732b24726b733.tar.gz semanticscuttle-ec345f7a1343769abdf3f5920a0732b24726b733.tar.bz2 |
new privatekey2 branch with privatekey changes
Diffstat (limited to 'data/templates/editprofile.tpl.php')
-rw-r--r-- | data/templates/editprofile.tpl.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/data/templates/editprofile.tpl.php b/data/templates/editprofile.tpl.php index cc74f04..76f608a 100644 --- a/data/templates/editprofile.tpl.php +++ b/data/templates/editprofile.tpl.php @@ -28,6 +28,14 @@ $this->includeTemplate($GLOBALS['top_include']); <td><input type="text" name="pMail" size="75" value="<?php echo filter($objectUser->getEmail(), 'xml'); ?>" /></td> <td>← <?php echo T_('Required'); ?></td> </tr> +<tr> + <th align="left"><?php echo T_('Private RSS Feed'); ?></th> + <td><input type="checkbox" id="pEnablePrivateKey" name="pEnablePrivateKey" value="true" <?php echo $privateKeyIsEnabled;?> /> + <label for="pEnablePrivateKey"><?php echo T_('Enable'); ?></label> + <input type="text" id="pPrivateKey" name="pPrivateKey" size="40" value="<?php echo $privateKey;?>" readonly="readonly" /> + <input type="submit" name="submittedPK" value="<?php echo T_('Generate New Key'); ?>" /> + </td> +</tr> </table> <h3><?php echo T_('Personal Details'); ?></h3> |