diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/templates/editprofile-sslclientcerts.tpl.php | 25 | ||||
| -rw-r--r-- | data/templates/editprofile.tpl.php | 4 | 
2 files changed, 28 insertions, 1 deletions
diff --git a/data/templates/editprofile-sslclientcerts.tpl.php b/data/templates/editprofile-sslclientcerts.tpl.php new file mode 100644 index 0000000..e6fc5c3 --- /dev/null +++ b/data/templates/editprofile-sslclientcerts.tpl.php @@ -0,0 +1,25 @@ +<h3><?php echo T_('SSL client certificates'); ?></h3> +<?php if (count($sslClientCerts)) { ?> +<table> + <thead> +  <tr> +   <th><?php echo T_('Serial'); ?></th> +   <th><?php echo T_('Name'); ?></th> +   <th><?php echo T_('Email'); ?></th> +   <th><?php echo T_('Issuer'); ?></th> +  </tr> + </thead> + <tbody> + <?php foreach($sslClientCerts as $cert) { ?> +   <tr <?php if ($cert->isCurrent()) { echo 'class="ssl-current"'; } ?>> +   <td><?php echo htmlspecialchars($cert->sslSerial); ?></td> +   <td><?php echo htmlspecialchars($cert->sslName); ?></td> +   <td><?php echo htmlspecialchars($cert->sslEmail); ?></td> +   <td><?php echo htmlspecialchars($cert->sslClientIssuerDn); ?></td> +  </tr> + <?php } ?> + </tbody> +</table> +<?php } else { ?> + <p><?php echo T_('No certificates registered'); ?></p> +<?php } ?> diff --git a/data/templates/editprofile.tpl.php b/data/templates/editprofile.tpl.php index 2a3c3b8..cc74f04 100644 --- a/data/templates/editprofile.tpl.php +++ b/data/templates/editprofile.tpl.php @@ -50,13 +50,15 @@ $this->includeTemplate($GLOBALS['top_include']);      <td><input type="submit" name="submitted" value="<?php echo T_('Save Changes'); ?>" /></td>  </tr>  </table> + +<?php include 'editprofile-sslclientcerts.tpl.php'; ?>  <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"><?php echo T_('XML file (like del.icio.us)')?></a> /  +	<a href="../api/posts_all.php"><?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>  | 
