summaryrefslogtreecommitdiffstats
path: root/testapi/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html
diff options
context:
space:
mode:
authorSerenaFeng <feng.xiaowei@zte.com.cn>2017-10-27 16:58:49 +0800
committerSerena Feng <feng.xiaowei@zte.com.cn>2017-10-31 01:00:35 +0000
commit426aa0231af6cb1911ac7b6fbd36062e338af05a (patch)
tree26199aa442137d9783feb568bf07b57bc5829470 /testapi/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html
parent529b408c84abb20e3ac28f5d07fe485d9f55ac12 (diff)
remove components out side of 3rd_party
components are implemented by TestAPI team, they are not the third party code, put them under opnfv_testapi/ui directory Change-Id: Ia0f5e2afe4bcb12bcb74d3a8d78fb28fe1432bec Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'testapi/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html')
-rw-r--r--testapi/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/testapi/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html b/testapi/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html
deleted file mode 100644
index 0f55c27..0000000
--- a/testapi/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<div class="modal-header">
- <h4>Import Public Key</h4>
- <p>Instructions for adding a public key and signature can be found
- <a href="https://github.com/openstack/refstack/blob/master/doc/source/uploading_private_results.rst#generate-ssh-keys-locally"
- target="_blank"
- title="How to generate and upload SSH key and signature with testapi-client">here.
- </a>
- </p>
-</div>
-<div class="modal-body container-fluid">
- <div class="row">
- <div class="col-md-2">Public Key</div>
- <div class="col-md-9 pull-right">
- <textarea type="text" rows="10" cols="42" ng-model="modal.raw_key" required></textarea>
- </div>
- </div>
- <div class="row">
- <div class="col-md-2">Signature</div>
- <div class="col-md-9 pull-right">
- <textarea type="text" rows="10" cols="42" ng-model="modal.self_signature" required></textarea>
- </div>
- </div>
- <div class="modal-footer">
- <button class="btn btn-warning btn-sm" ng-click="modal.cancel()">Cancel</button>
- <button type="button" class="btn btn-default btn-sm" ng-click="modal.importPubKey()">Import Public Key</button>
- </div>
-</div>