summaryrefslogtreecommitdiffstats
path: root/cds-ui/client/src/app/feature-modules/blueprint/select-template/select-template.component.html
diff options
context:
space:
mode:
authorezhil <ezhrajam@in.ibm.com>2019-02-01 16:13:56 +0530
committerezhil <ezhrajam@in.ibm.com>2019-02-01 16:14:13 +0530
commitbf2031bcd83ca1e97f4af9fcfe3f07f01025f840 (patch)
treec1204e2b49b6701b62dab23c674851eb6c08f192 /cds-ui/client/src/app/feature-modules/blueprint/select-template/select-template.component.html
parent5e0ae9df92d5dea5549839696845613d7b8978ad (diff)
Select template for CBA wizard
Change-Id: I57c5b9af9c0dfa50fcb332ee93a6657baaca4cf1 Issue-ID: CCSDK-703 Signed-off-by: ezhil <ezhrajam@in.ibm.com>
Diffstat (limited to 'cds-ui/client/src/app/feature-modules/blueprint/select-template/select-template.component.html')
-rw-r--r--cds-ui/client/src/app/feature-modules/blueprint/select-template/select-template.component.html29
1 files changed, 26 insertions, 3 deletions
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/select-template/select-template.component.html b/cds-ui/client/src/app/feature-modules/blueprint/select-template/select-template.component.html
index 2b8b74be1..bcd78323e 100644
--- a/cds-ui/client/src/app/feature-modules/blueprint/select-template/select-template.component.html
+++ b/cds-ui/client/src/app/feature-modules/blueprint/select-template/select-template.component.html
@@ -18,8 +18,31 @@ See the License for the specific language governing permissions and
limitations under the License.
============LICENSE_END============================================
-->
-<p>
- select-template works!
-</p>
+<mat-vertical-stepper linear>
+ <mat-step [stepControl]="step1FormGroup">
+ <ng-template matStepLabel>Choose CBA Template file</ng-template>
+ <app-template-options></app-template-options>
+ <br>
+ <div>
+ <button mat-button matStepperNext class="matStepNextBtn">Proceed</button>
+ </div>
+ </mat-step>
+ <mat-step [stepControl]="step2FormGroup">
+ <ng-template matStepLabel>Browse CBA Template file</ng-template>
+ <app-search-template (change)="fileChange(fileupload.files)"></app-search-template>
+ <br>
+ <div>
+ <button mat-button matStepperNext class="matStepNextBtn">Upload</button>
+ </div>
+ </mat-step>
+ <mat-step [stepControl]="step3FormGroup">
+ <ng-template matStepLabel>Enter Metadata details</ng-template>
+ <app-metadata></app-metadata>
+ <br>
+ </mat-step>
+</mat-vertical-stepper>
+<button mat-button matStepperNext class="matStepNextBtn">Next</button>
<!-- <router-outlet></router-outlet> -->
+
+<!-- </form> --> \ No newline at end of file