-
Notifications
You must be signed in to change notification settings - Fork 315
Expand file tree
/
Copy pathsettings.html
More file actions
45 lines (36 loc) · 1.24 KB
/
settings.html
File metadata and controls
45 lines (36 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<ion-header>
<ion-navbar>
<ion-title>{{ pageTitle }}</ion-title>
</ion-navbar>
</ion-header>
<ion-content>
<form [formGroup]="form" *ngIf="settingsReady">
<ion-list *ngIf="page == 'main'">
<ion-item>
<ion-label>{{ 'SETTINGS_OPTION1' | translate }}</ion-label>
<ion-toggle formControlName="option1"></ion-toggle>
</ion-item>
<ion-item>
<ion-label>{{ 'SETTINGS_OPTION2' | translate }}</ion-label>
<ion-input formControlName="option2"></ion-input>
</ion-item>
<ion-item>
<ion-label>{{ 'SETTINGS_OPTION3' | translate }}</ion-label>
<ion-select formControlName="option3">
<ion-option value="1" checked="true">1</ion-option>
<ion-option value="2">2</ion-option>
<ion-option value="3">3</ion-option>
</ion-select>
</ion-item>
<button ion-item [navPush]="subSettings" [navParams]="profileSettings">
{{ 'SETTINGS_PROFILE_BUTTON' | translate }}
</button>
</ion-list>
<ion-list *ngIf="page == 'profile'">
<ion-item>
<ion-label>{{ 'SETTINGS_OPTION4' | translate }}</ion-label>
<ion-input formControlName="option4"></ion-input>
</ion-item>
</ion-list>
</form>
</ion-content>