aboutsummaryrefslogtreecommitdiffstats
path: root/3rd_party/static/testapi-ui/components/application/modal/confirmModal.html
diff options
context:
space:
mode:
authorxudan <xudan16@huawei.com>2018-07-06 05:16:40 -0400
committerxudan <xudan16@huawei.com>2018-07-06 05:21:42 -0400
commitb3e40f026d655501bfa581452c447784604ecb05 (patch)
tree406f8bfc1abc1b33f98153d03abd34ef7b0e2fe9 /3rd_party/static/testapi-ui/components/application/modal/confirmModal.html
parentb1b0ea32d1a296c7d055c5391261dcad6be48c63 (diff)
Move all web portal code to the new repo dovetail-webportal
This is only the first step to simply copy the file here. There still need some more work to make sure all work well. All the changes will be submitted with other patches to make it easily to review. JIRA: DOVETAIL-671 Change-Id: I64d32a9df562184166b6199e2719f298687d1a0a Signed-off-by: xudan <xudan16@huawei.com>
Diffstat (limited to '3rd_party/static/testapi-ui/components/application/modal/confirmModal.html')
-rw-r--r--3rd_party/static/testapi-ui/components/application/modal/confirmModal.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/3rd_party/static/testapi-ui/components/application/modal/confirmModal.html b/3rd_party/static/testapi-ui/components/application/modal/confirmModal.html
new file mode 100644
index 0000000..749315d
--- /dev/null
+++ b/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>