aboutsummaryrefslogtreecommitdiffstats
path: root/3rd_party/static/testapi-ui/components/application/modal/confirmModal.html
blob: b8f8fb332d3b7ad884fc8f5bc62d39f999b0e564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!--
 Copyright (c) 2019 opnfv.

 All rights reserved. This program and the accompanying materials
 are made available under the terms of the Apache License, Version 2.0
 which accompanies this distribution, and is available at
 http://www.apache.org/licenses/LICENSE-2.0
-->

<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">Owner: </label>
        <input type="text" class="text col-sm-7 application-modal-text" ng-model="ctrl.owner" 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>