2013-10-21 11:10:45 -04:00
|
|
|
<div class="lightbox-body" ng-controller="AccountCtrl">
|
|
|
|
<header>
|
|
|
|
<h2>Account</h2>
|
2014-09-23 09:41:37 -04:00
|
|
|
<button class="close" wo-touch="state.account.toggle(false)" data-action="lightbox-close">
|
|
|
|
<svg><use xlink:href="#icon-close" /><title>Close</title></svg>
|
|
|
|
</button>
|
2013-10-21 11:10:45 -04:00
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="content">
|
2014-04-11 12:39:13 -04:00
|
|
|
<div class="dialog view-account">
|
|
|
|
|
2014-03-06 12:19:51 -05:00
|
|
|
<table>
|
2013-11-06 11:19:39 -05:00
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Email</td>
|
|
|
|
<td>{{eMail}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>PGP Key ID</td>
|
2014-07-10 14:01:11 -04:00
|
|
|
<td>{{keyId}} (<a href="https://whiteout.io/revocation.html" title="Click to reset your account." target="_blank">Revoke key</a>)</td>
|
2013-11-06 11:19:39 -05:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>PGP Fingerprint</td>
|
2014-07-10 14:01:11 -04:00
|
|
|
<td><a href="{{publicKeyUrl}}" title="Click to share your public key." target="_blank">{{fingerprint}}</a></td>
|
2013-11-06 11:19:39 -05:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Key Size (RSA)</td>
|
|
|
|
<td>{{keysize}} bit</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2014-04-11 12:39:13 -04:00
|
|
|
|
|
|
|
<div class="control">
|
2014-09-23 09:41:37 -04:00
|
|
|
<button wo-touch="state.account.toggle(false); state.setPassphrase.toggle(true)" class="btn btn--secondary">Set passphrase</button>
|
2014-06-27 06:36:43 -04:00
|
|
|
<button wo-touch="exportKeyFile()" class="btn">Export keypair</button>
|
2013-11-06 11:19:39 -05:00
|
|
|
</div>
|
2014-04-11 12:39:13 -04:00
|
|
|
|
2013-11-06 10:20:49 -05:00
|
|
|
</div><!-- /.view-account -->
|
|
|
|
</div><!-- /.content -->
|
|
|
|
</div><!-- /.lightbox-body -->
|