You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
518 B
HTML
13 lines
518 B
HTML
<ion-grid class="form-item">
|
|
<ion-row>
|
|
<ion-label color="primary" >{{ 'body,select.gender' | translate }}</ion-label>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col>
|
|
<ion-button [ngClass]="{'selected-button': isFemale}" expand="block" (click)="select(true)">{{ 'body,female' | translate }}</ion-button>
|
|
</ion-col>
|
|
<ion-col>
|
|
<ion-button [ngClass]="{'selected-button': isMale}" expand="block" (click)="select(false)">{{ 'body,male' | translate }}</ion-button>
|
|
</ion-col>
|
|
</ion-row>
|
|
</ion-grid> |