38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<!--<ion-header>-->
|
|
<!-- <ion-toolbar>-->
|
|
<!-- <ion-title>preferences</ion-title>-->
|
|
<!-- </ion-toolbar>-->
|
|
<!--</ion-header>-->
|
|
|
|
<ion-content>
|
|
<div class="ion-padding">
|
|
<div class="boxed_contents">
|
|
<ion-card>
|
|
<ion-card-header>
|
|
<ion-card-title>Use Preference</ion-card-title>
|
|
<!-- <ion-card-subtitle>Use Preference</ion-card-subtitle>-->
|
|
</ion-card-header>
|
|
|
|
<ion-card-content>
|
|
Tell us your best use scenario to help optimize your ease of use.
|
|
</ion-card-content>
|
|
</ion-card>
|
|
<div style="background-color: white; border-radius: 10px; padding: 20px;">
|
|
<ion-list>
|
|
<ion-item *ngFor="let item of prefData" style="padding: 2px 10px 10px 2px; margin-right: 10px;">
|
|
<div class="chk-item" style="width: 25px;"><ion-checkbox labelPlacement="end"> </ion-checkbox></div><span class="chk-item" style="color: #0b5e86;">{{item.description}}</span>
|
|
</ion-item>
|
|
</ion-list>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</ion-content>
|
|
<ion-footer style="background-color: white;">
|
|
<ion-toolbar style="padding-bottom: 10px;">
|
|
<div class="button" (click)="onBack()">
|
|
<ion-label class="text">Continue</ion-label>
|
|
</div>
|
|
</ion-toolbar>
|
|
</ion-footer>
|