2013-10-21 11:10:45 -04:00
|
|
|
<div class="lightbox-body" ng-controller="AccountCtrl">
|
|
|
|
<header>
|
|
|
|
<h2>Account</h2>
|
2014-06-27 06:36:43 -04:00
|
|
|
<button class="close" wo-touch="state.account.toggle(false)" data-action="lightbox-close"></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-06-13 06:33:30 -04:00
|
|
|
<td>{{keyId}} (<a href="https://whiteout.io/revocation.html" title="Click here to reset your account." target="_blank">Revoke key</a>)</td>
|
2013-11-06 11:19:39 -05:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>PGP Fingerprint</td>
|
|
|
|
<td><span>{{fingerprint}}</span></td>
|
|
|
|
</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-06-27 06:36:43 -04:00
|
|
|
<button wo-touch="state.account.toggle(false); state.setPassphrase.toggle(true)" class="btn btn-alt">Set passphrase</button>
|
|
|
|
<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 -->
|