diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-28 19:09:53 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-28 19:09:53 -0400 |
commit | fb4e2bc3eb66ca861eb8393ade21811e4510669a (patch) | |
tree | 2ea81b40956165d9483c30032c51d6ed16957b07 /ufund-ui/src/app/app.component.html | |
parent | d6f4aad157baad7d9b25d56ce056b80805e88f5f (diff) | |
download | JellySolutions-fb4e2bc3eb66ca861eb8393ade21811e4510669a.tar.gz JellySolutions-fb4e2bc3eb66ca861eb8393ade21811e4510669a.tar.bz2 JellySolutions-fb4e2bc3eb66ca861eb8393ade21811e4510669a.zip |
Start implementation new design
Diffstat (limited to 'ufund-ui/src/app/app.component.html')
-rw-r--r-- | ufund-ui/src/app/app.component.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ufund-ui/src/app/app.component.html b/ufund-ui/src/app/app.component.html index 3058117..b0ee329 100644 --- a/ufund-ui/src/app/app.component.html +++ b/ufund-ui/src/app/app.component.html @@ -1,14 +1,14 @@ <div id="header"> - <span> + <div> <a routerLink="/"> <h1>Jelly Solutions</h1> </a> - </span> + </div> <div> <a routerLink="/dashboard">Dashboard</a> <a routerLink="/cupboard">Cupboard</a> <a routerLink="/basket">Basket</a> - <span>{{currentUser$ | async}}</span> +<!-- <span>{{currentUser$ | async}}</span>--> <button *ngIf="currentUser$.value != 'Logged out.'" onclick="location.href='/';"> Log Out</button> <button *ngIf="currentUser$.value == 'Logged out.'" routerLink="/login"> Log In</button> </div> |