Merge "added license text to search service"
[ccsdk/cds.git] / cds-ui / client / src / app / feature-modules / blueprint / select-template / select-template.component.html
1 <!--
2 ============LICENSE_START==========================================
3 ===================================================================
4 Copyright (C) 2018 IBM Intellectual Property. All rights reserved.
5 ===================================================================
6
7 Unless otherwise specified, all software contained herein is licensed
8 under the Apache License, Version 2.0 (the License);
9 you may not use this software except in compliance with the License.
10 You may obtain a copy of the License at
11
12     http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END============================================
20 -->
21 <mat-vertical-stepper linear>
22     <mat-step [stepControl]="step1FormGroup">
23         <ng-template matStepLabel>Choose CBA Template file</ng-template>
24         <div class="matStepContent">
25             <app-template-options (option)="templateSelected($event)"></app-template-options>
26             <br>
27             <div>
28                 <button mat-button matStepperNext class="matStepNextBtn">Proceed</button>
29             </div>
30         </div>
31     </mat-step>
32
33     <mat-step [stepControl]="step2FormGroup" *ngIf="templateOption==1 || templateOption == 2">
34         <ng-template matStepLabel>Browse CBA Template file</ng-template>
35         <div class="matStepContent">
36             <app-search-template [optionSelected]="templateOption" (cbaFile)="fileChange($event)"></app-search-template>
37             <!-- <div>
38                 <button mat-button matStepperNext class="matStepNextBtn">Upload</button>
39             </div>-->
40         </div>
41     </mat-step>
42     <mat-step [stepControl]="step3FormGroup">
43         <ng-template matStepLabel>Enter Metadata details</ng-template>
44         <div class="matStepContent">
45             <app-metadata (metadataform)="metaDataDetail($event)"></app-metadata>
46         </div>
47     </mat-step>
48 </mat-vertical-stepper>
49 <button mat-button matStepperNext class="matStepNextBtn">Next</button>