-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaurieNewFile.txt
More file actions
39 lines (32 loc) · 1.18 KB
/
laurieNewFile.txt
File metadata and controls
39 lines (32 loc) · 1.18 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
<!--
Generated template for the UserProfilePage page.
See http://ionicframework.com/docs/components/#navigation for more info on
Ionic pages and navigation.
-->
<ion-header>
<ion-navbar>
<ion-title>User Profile</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<div *ngIf="user">
<h1>Votre profil :</h1>
<ion-list>
<ion-item>
<ion-label color="primary">Nom :</ion-label>
<ion-input placeholder="Paul" [(ngModel)]="user.name"></ion-input>
</ion-item>
<ion-item>
<ion-label color="primary">Mail :</ion-label>
<ion-input placeholder="paul@gmail.com" [(ngModel)]="user.mail" type="mail"></ion-input>
</ion-item>
<ion-item>
<ion-label color="primary">Numéro de téléphone :</ion-label>
<ion-input placeholder="0612345678" [(ngModel)]="user.tel" type="tel"></ion-input>
</ion-item>
<ion-footer>
<button ion-button large center (click)="update()">Mettre à jour mon profil</button>
</ion-footer>
</ion-list>
</div>
</ion-content>