summaryrefslogtreecommitdiffstats
path: root/components/datalake-handler/admin/src/src/app/views/database/database-list/database-add-modal/database-add-modal.component.html
blob: 21a06e98e345b237107f514f5b89b3aa58649717 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!--
============LICENSE_START=======================================================
ONAP : DataLake
================================================================================
Copyright 2019 QCT
=================================================================================
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
============LICENSE_END=========================================================
-->

<div class="p-0">
  <div class="modal-header pb-0 border-0">
    <div class="container-fluid">
      <div class="row">
        <div class="col-md-12">
          <label class="dl-h3">{{ 'NEW_DB' | translate }}</label>
        </div>
      </div>
      <div class="row">
        <div class="col-md-12">
          <hr/>
        </div>
      </div>
    </div>
  </div>
  <div class="modal-body p-0">
    <div class="container-fluid">
        <div class="tab-content mb-auto" id="v-pills-tabContent">
          <!-- All -->
          <div class="tab-pane fade show active" id="v-pills-all" role="tabpanel" aria-labelledby="v-pills-all-tab">
            <div class="nav flex-column nav-pills" id="menu-tab2" role="tablist" aria-orientation="vertical">
              <a class="nav-link" (click)="this.clickItem('Couchbase')" data-toggle="pill" role="tab"
                aria-selected="true">Couchbase</a>
              <a class="nav-link" (click)="this.clickItem('Druid')" data-toggle="pill" role="tab"
                aria-selected="true">Druid</a>
              <a class="nav-link" (click)="this.clickItem('Elasticsearch')" data-toggle="pill" role="tab"
                aria-selected="true">Elasticsearch</a>
              <a class="nav-link" (click)="this.clickItem('MongoDB')" data-toggle="pill" role="tab"
                aria-selected="true">MongoDB</a>
              <a class="nav-link" (click)="this.clickItem('HDFS')" data-toggle="pill" role="tab"
                 aria-selected="true">HDFS</a>
            </div>
          </div>
        </div>
        <div class="d-flex mt-auto justify-content-end p-3">
          <div class="p-1 col-sm-3">
            <span>
              <button type="button" class="btn dl-btn-dark btn-block" (click)="this.passBack()">
                Next
              </button>
            </span>
          </div>
          <div class="p-1 col-sm-3">
            <span>
              <button type="button" class="btn dl-btn-light btn-block" (click)="activeModal.close('Close click')">
                Cancel
              </button>
            </span>
          </div>
      </div>
    </div>
  </div>
</div>