mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 23:39:18 +00:00
16 lines
293 B
HTML
16 lines
293 B
HTML
<div class="container" *ngIf="currentUser; else loggedOut">
|
|
<p>
|
|
<strong>e-mail</strong>
|
|
{{ currentUser.email}}
|
|
</p>
|
|
<p>
|
|
<strong>username:</strong>
|
|
{{ currentUser.username}}
|
|
</p>
|
|
</div>
|
|
|
|
<ng-template #loggedOut>
|
|
Please login.
|
|
</ng-template>
|
|
|