Taobin-Recipe-Manager/client/src/app/features/dashboard/dashboard.component.html
2023-09-20 10:12:19 +07:00

10 lines
304 B
HTML

<p>dashboard works!</p>
<div *ngIf="userInfo">
<img [src]="userInfo.image" loading="lazy" />
<p>Hi {{ userInfo.username }}</p>
<p>Your email is {{ userInfo.email }}</p>
</div>
<button (click)="logout()" class="bg-blue-300 rounded-lg min-w-fit p-10">
Logout
</button>
<a href="/log">View Logs</a>