summaryrefslogtreecommitdiffstats
path: root/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.html
diff options
context:
space:
mode:
authorezhil <ezhrajam@in.ibm.com>2019-02-01 17:14:58 +0530
committerezhil <ezhrajam@in.ibm.com>2019-02-01 17:15:14 +0530
commit1334f839242b688681c699eb169c58d2a99874c6 (patch)
tree6690b5c13d7fb7398147c88346a631ad7141df3f /cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.html
parent5e0ae9df92d5dea5549839696845613d7b8978ad (diff)
Template Option Component
Change-Id: I7262b53e1599e4c16a645da186a1d672987aab50 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/template-options/template-options.component.html')
-rw-r--r--cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.html b/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.html
index 7f520ff9d..9c2d721e0 100644
--- a/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.html
+++ b/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.html
@@ -18,7 +18,8 @@ See the License for the specific language governing permissions and
limitations under the License.
============LICENSE_END============================================
-->
-<p>
- template-options works!
-</p>
-<button (click)="loadTemplateData()">Load Template Data</button> \ No newline at end of file
+<mat-radio-group>
+ <mat-radio-button value="1" (click)="selected(1)">Upload Template file</mat-radio-button><br><br>
+ <mat-radio-button value="2" (click)="selected(2)">Starter Template</mat-radio-button><br><br>
+ <mat-radio-button value="3" (click)="selected(3)">Existing Model File</mat-radio-button>
+</mat-radio-group>