mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-11 01:07:39 +08:00
34 lines
929 B
HTML
34 lines
929 B
HTML
<div class="popups">
|
|
<div class="modal hide b-pgp-key g-ui-user-select-none" data-bind="modal: modalVisibility">
|
|
<div>
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-bind="command: cancelCommand">×</button>
|
|
<h3>
|
|
PGP
|
|
</h3>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-horizontal">
|
|
<br />
|
|
<div class="control-group">
|
|
Passphrase
|
|
<br />
|
|
<input class="uiInput inputPassphrase" type="password" data-bind="value: passphrase" />
|
|
</div>
|
|
<div class="control-group">
|
|
Secret key
|
|
<br />
|
|
<textarea class="input-xxlarge inputKey" data-bind="value: key" rows="10" spellcheck="false"></textarea>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<a class="btn buttonAction" data-bind="command: sendPgp">
|
|
<i class="icon-lock"></i>
|
|
|
|
Decrypt
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|