diff options
Diffstat (limited to 'data/templates/editprofile.tpl.php')
-rw-r--r-- | data/templates/editprofile.tpl.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/data/templates/editprofile.tpl.php b/data/templates/editprofile.tpl.php index 76f608a..258e864 100644 --- a/data/templates/editprofile.tpl.php +++ b/data/templates/editprofile.tpl.php @@ -33,7 +33,9 @@ $this->includeTemplate($GLOBALS['top_include']); <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'); ?>" /> + <!--<input type="button" name="submittedPK" value="<?php echo T_('Generate New Key'); ?>" />--> + + <a onClick="getNewPrivateKey(this); return false;"><button type="submit" name="submittedPK" value="1"><?php echo T_('Generate New Key'); ?></button></a> </td> </tr> </table> |