mail/src/tpl/account.html

40 lines
1.3 KiB
HTML
Raw Normal View History

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">
<div class="dialog view-account">
<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>
<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>
<button wo-touch="exportKeyFile()" class="btn">Export keypair</button>
2013-11-06 11:19:39 -05:00
</div>
2013-11-06 10:20:49 -05:00
</div><!-- /.view-account -->
</div><!-- /.content -->
</div><!-- /.lightbox-body -->