openvidu/openvidu-sample-app/frontend/src/app/components/profile/profile.component.html

18 lines
411 B
HTML

<div fxLayout="row" fxLayoutAlign="center center">
<div class="div-inner-main" [style.xs]="{'width': '100%'}">
<div>MY PROFILE</div>
<table>
<tr>
<td>Name</td>
<th>{{authenticationService.getCurrentUser().nickName}}</th>
</tr>
<tr>
<td>Email</td>
<th>{{authenticationService.getCurrentUser().name}}</th>
</tr>
</table>
</div>
</div>