remove components out side of 3rd_party
[releng.git] / utils / test / testapi / opnfv_testapi / ui / profile / importPubKeyModal.html
1 <div class="modal-header">
2     <h4>Import Public Key</h4>
3     <p>Instructions for adding a public key and signature can be found
4        <a href="https://github.com/openstack/refstack/blob/master/doc/source/uploading_private_results.rst#generate-ssh-keys-locally"
5           target="_blank"
6           title="How to generate and upload SSH key and signature with testapi-client">here.
7        </a>
8     </p>
9 </div>
10 <div class="modal-body container-fluid">
11     <div class="row">
12         <div class="col-md-2">Public Key</div>
13         <div class="col-md-9 pull-right">
14         <textarea type="text" rows="10" cols="42" ng-model="modal.raw_key" required></textarea>
15         </div>
16     </div>
17     <div class="row">
18         <div class="col-md-2">Signature</div>
19         <div class="col-md-9 pull-right">
20         <textarea type="text" rows="10" cols="42" ng-model="modal.self_signature" required></textarea>
21         </div>
22     </div>
23     <div class="modal-footer">
24         <button class="btn btn-warning btn-sm" ng-click="modal.cancel()">Cancel</button>
25         <button type="button" class="btn btn-default btn-sm" ng-click="modal.importPubKey()">Import Public Key</button>
26     </div>
27 </div>