summaryrefslogtreecommitdiffstatshomepage
path: root/data/templates/pico/editprofile-sslclientcerts.tpl.php
diff options
context:
space:
mode:
authorGravatar Tom Willemse2024-06-11 00:58:31 -0700
committerGravatar Tom Willemse2024-06-11 14:59:42 -0700
commit15a30340e8867dfac3f88460fbd93b581e56f10f (patch)
tree5f1ec84c8003a229769613d0bd6c7d399ec94be4 /data/templates/pico/editprofile-sslclientcerts.tpl.php
parentb76f3afb27702c990275708c2ea0d432f35c6df1 (diff)
downloadscuttle-15a30340e8867dfac3f88460fbd93b581e56f10f.tar.gz
scuttle-15a30340e8867dfac3f88460fbd93b581e56f10f.zip
Initial steps towards a pico.css-based theme
Diffstat (limited to 'data/templates/pico/editprofile-sslclientcerts.tpl.php')
-rw-r--r--data/templates/pico/editprofile-sslclientcerts.tpl.php60
1 files changed, 60 insertions, 0 deletions
diff --git a/data/templates/pico/editprofile-sslclientcerts.tpl.php b/data/templates/pico/editprofile-sslclientcerts.tpl.php
new file mode 100644
index 0000000..900c193
--- /dev/null
+++ b/data/templates/pico/editprofile-sslclientcerts.tpl.php
@@ -0,0 +1,60 @@
+<?php
+/**
+ * User's own profile page: SSL client certificate settings
+ *
+ * @param array $sslClientCerts Array of SSL client certificate objects
+ * @param string $formaction URL where to send the forms to
+ * @param SemanticScuttle_Model_User_SslClientCert
+ * $currentCert Current SSL client certificate (may be null)
+ */
+?>
+<h3><?php echo T_('SSL client certificates'); ?></h3>
+<?php if (count($sslClientCerts)) { ?>
+<table>
+ <thead>
+ <tr>
+ <th>Options</th>
+ <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>
+ <form method="post" action="<?php echo $formaction; ?>">
+ <input type="hidden" name="certId" value="<?php echo $cert->id; ?>"/>
+ <button type="submit" name="action" value="deleteClientCert">
+ <?php echo T_('delete'); ?>
+ </button>
+ </form>
+ </td>
+ <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 } ?>
+
+<?php if ($currentCert) { ?>
+ <?php if ($currentCert->isRegistered($sslClientCerts)) { ?>
+ <p><?php echo T_('Your current certificate is already registered with your account.'); ?></p>
+ <?php } else { ?>
+ <p>
+ <form method="post" action="<?php echo $formaction; ?>">
+ <button type="submit" name="action" value="registerCurrentCert">
+ <?php echo T_('Register current certificate to automatically login.'); ?>
+ </button>
+ </form>
+ </p>
+ <?php } ?>
+<?php } else { ?>
+ <p><?php echo T_('Your browser does not provide a certificate.'); ?></p>
+<?php } ?>