-
Notifications
You must be signed in to change notification settings - Fork 0
/
profileDetails.html
39 lines (36 loc) · 1.17 KB
/
profileDetails.html
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
<h1 style="text-align: center;">Profile</h1>
<!-- <div>Username: {{user.username}}</div>
<div>Passowrd: {{user.passowrd}}</div>
<div>Firstname: {{user.firstname}}</div>
<div>Lastname: {{user.lastname}}</div>
<div>Email: {{user.email}}</div>
<div>Phone: {{user.phone}}</div>
<div>Location: {{user.location}}</div>
<button ng-click ="goback()">Back</button>
<a href ="#/edit/{{user.username}}">Edit</button> -->
<table class="table" >
<thead>
<th>Username</th>
<th>Passowrd</th>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
<th>Phone</th>
<th>Location</th>
</thead>
<tbody>
<tr>
<td>{{user.username}}</td>
<td>{{user.passowrd}}</td>
<td>{{user.firstname}}</td>
<td>{{user.lastname}}</td>
<td>{{user.email}}</td>
<td>{{user.phone}}</td>
<td>{{user.location}}</td>
<td>
<input type="button" value="Back" ng-click ="goback()"/>
<a href ="#/edit/{{user.username}}">Edit</a>
</td>
</tr>
</tbody>
</table>