WIP: proile component created.

This commit is contained in:
2021-06-16 09:59:25 +02:00
parent 92de923fad
commit 8eba80f7d4
4 changed files with 65 additions and 0 deletions
@@ -0,0 +1,15 @@
<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>