diff options
Diffstat (limited to 'cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.html')
-rw-r--r-- | cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.html | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.html b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.html index dad727cec..83c9ae2c0 100644 --- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.html +++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.html @@ -18,23 +18,28 @@ * ============LICENSE_END========================================================= */--> +<mat-card class="ver-card"> +<mat-card-header> +</mat-card-header> +<mat-card-content> <mat-vertical-stepper linear> - <mat-step > + <mat-step [stepControl]="step1FormGroup"> <ng-template matStepLabel>Choose Resource file</ng-template> <br> - <app-resource-template-options></app-resource-template-options> + <app-resource-template-options (options)="selectedOption($event)"></app-resource-template-options> <br> <div> <button mat-button matStepperNext class="matStepNextBtn">Proceed</button> </div> </mat-step> - <mat-step > + <mat-step [stepControl]="step2FormGroup"> <ng-template matStepLabel>Browse Template file</ng-template> - <app-upload-resource (change)="fileChange(fileupload.files)"></app-upload-resource> + <app-upload-resource (change)="fileChange(fileupload.files)"></app-upload-resource><br><br> + <app-existing-model></app-existing-model> <div> <button mat-button matStepperNext class="matStepNextBtn">Upload</button> </div> </mat-step> -</mat-vertical-stepper> - -<!-- <router-outlet></router-outlet> -->
\ No newline at end of file + </mat-vertical-stepper> + </mat-card-content> +</mat-card>
\ No newline at end of file |