Merge "Created media folders for ResourceDictionary"
[ccsdk/cds.git] / cds-ui / client / src / app / feature-modules / blueprint / select-template / select-template.component.html
index 2b8b74b..97c65b2 100644 (file)
@@ -18,8 +18,32 @@ 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>
+        <div class="matStepContent">
+            <app-template-options (option)="templateSelected($event)"></app-template-options>
+            <br>
+            <div>
+                <button mat-button matStepperNext class="matStepNextBtn">Proceed</button>
+            </div>
+        </div>
+    </mat-step>
 
-<!-- <router-outlet></router-outlet> -->
+    <mat-step [stepControl]="step2FormGroup" *ngIf="templateOption==1 || templateOption == 2">
+        <ng-template matStepLabel>Browse CBA Template file</ng-template>
+        <div class="matStepContent">
+            <app-search-template [optionSelected]="templateOption" (cbaFile)="fileChange($event)"></app-search-template>
+            <!-- <div>
+                <button mat-button matStepperNext class="matStepNextBtn">Upload</button>
+            </div>-->
+        </div>
+    </mat-step>
+    <mat-step [stepControl]="step3FormGroup">
+        <ng-template matStepLabel>Enter Metadata details</ng-template>
+        <div class="matStepContent">
+            <app-metadata (metadataform)="metaDataDetail($event)"></app-metadata>
+        </div>
+    </mat-step>
+</mat-vertical-stepper>
+<button mat-button matStepperNext class="matStepNextBtn">Next</button>
\ No newline at end of file