You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
692 B
29 lines
692 B
<p>user-show works!</p>
|
|
|
|
<body>
|
|
<h3>All User Details</h3>
|
|
|
|
<table class="table table-hover">
|
|
<tr>
|
|
<th>User Id</th>
|
|
<th>User Email</th>
|
|
<th>First Name</th>
|
|
<th>City</th>
|
|
<th>Zipcode</th>
|
|
<th>Phone</th>
|
|
<th>Address Line 1</th>
|
|
<th>Address Line 2</th>
|
|
</tr>
|
|
<tr *ngFor="let user of userList | async">
|
|
<td>{{user.userid}}</td>
|
|
<td>{{user.useremail}}</td>
|
|
<td>{{user.userfirstname}}</td>
|
|
<td>{{user.usercity}}</td>
|
|
<td>{{user.userzip}}</td>
|
|
<td>{{user.userphone}}</td>
|
|
<td>{{user.useraddress}}</td>
|
|
<td>{{user.useraddress2}}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</body>
|