diff options
author | grakiss <grakiss.wanglei@huawei.com> | 2017-09-28 03:47:54 -0400 |
---|---|---|
committer | grakiss <grakiss.wanglei@huawei.com> | 2017-09-28 05:15:01 -0400 |
commit | 0cf6b232ac9cf128ee9183a27c08f4f74ab2e2e6 (patch) | |
tree | 7be233b8f8f65fa968c7b93f1d1e75b691952ed9 /cvp/3rd_party/static/testapi-ui/components/application/modal | |
parent | 63c2e2aa4b8d86349a767f611123ceafc19fa6d6 (diff) |
add api&web services for cvp
JIRA: DOVETAIL-512
add api&web services for cvp
Change-Id: I9ef9525e980fe61dc3108035ef9a3ff8783b2697
Signed-off-by: grakiss <grakiss.wanglei@huawei.com>
Diffstat (limited to 'cvp/3rd_party/static/testapi-ui/components/application/modal')
-rw-r--r-- | cvp/3rd_party/static/testapi-ui/components/application/modal/confirmModal.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/cvp/3rd_party/static/testapi-ui/components/application/modal/confirmModal.html b/cvp/3rd_party/static/testapi-ui/components/application/modal/confirmModal.html new file mode 100644 index 00000000..749315d0 --- /dev/null +++ b/cvp/3rd_party/static/testapi-ui/components/application/modal/confirmModal.html @@ -0,0 +1,43 @@ +<div> + <div class="row" style="margin-top:20px"> + <div class="col-sm-offset-1 col-sm-11"> + <div> + <label class="col-sm-3">Organization name: </label> + <input type="text" class="text col-sm-7 application-modal-text" ng-model="ctrl.organization_name" disabled> + </div> + <div> + <label class="col-sm-3">Organization website: </label> + <input type="text" class="text col-sm-7 application-modal-text" ng-model="ctrl.organization_web" disabled> + </div> + <div> + <label class="col-sm-3">Product name: </label> + <input type="text" class="text col-sm-7 application-modal-text" ng-model="ctrl.product_name" disabled> + </div> + <div> + <label class="col-sm-3">Product documentation: </label> + <input type="text" class="text col-sm-7 application-modal-text" ng-model="ctrl.product_categories" disabled> + </div> + <div> + <label class="col-sm-3">User ID: </label> + <input type="text" class="text col-sm-7 application-modal-text" ng-model="ctrl.user_id" disabled> + </div> + </div> + <div class="btn-group col-sm-offset-5 application-modal-button" role="group"> + <button type="button" class="btn btn-default" ng-click="ctrl.submitForm()">Confirm</button> + <button type="button" class="btn btn-default" style="margin-left:20px" ng-click="ctrl.cancelSubmit()">Cancel</button> + </div> + </div> +</div> + +<style> +.ngdialog.ngdialog-theme-default.custom-width-60 .ngdialog-content { + width: 50%; +} +.application-modal-text { + margin-bottom: 5px; +} +.application-modal-button { + margin-top: 10px; + margin-bottom: 20px; +} +</style> |