refstack/refstack-ui/app/components/profile/showPubKeyModal.html
sslypushenko 217cadd608 Add endpoint and UI for public keys uploading
Users can upload, delete and retrieve list of their public keys.

User can upload test result with any public keys without any connection
with uploading public keys in Refstack. It means that you can upload
signed test results and upload public key later. Also, it means that
deleting public key doesn't mean deleting results signed with this key.

Change-Id: Idc418c4c90221740eef04fcf498d7071a4446b9c
2015-08-13 20:40:55 +00:00

10 lines
415 B
HTML

<div class="modal-header">
<h4>Public key</h4>
</div>
<div class="modal-body container-fluid">
<textarea type="text" rows="10" cols="67" readonly="readonly">{{::rawKey}}</textarea>
<div class="modal-footer">
<button class="btn btn-warning" ng-click="cancel()">Cancel</button>
<button type="button" class="btn btn-danger btn-sm" ng-click="deletePubKey()">Delete</button>
</div>
</div>