Initial commit for the Angular part. We are nowhere yet.
This commit is contained in:
16
bookie/src/app/home/home.component.html
Normal file
16
bookie/src/app/home/home.component.html
Normal file
@ -0,0 +1,16 @@
|
||||
<a mat-raised-button routerLink="/login" *ngIf="!(nameObject | async)">
|
||||
<mat-icon>account_box</mat-icon>
|
||||
Login</a>
|
||||
<a mat-raised-button routerLink="/guest-book/list">
|
||||
Guest Book
|
||||
</a>
|
||||
<a mat-raised-button routerLink="/running-tables">
|
||||
Sales
|
||||
</a>
|
||||
<a mat-raised-button routerLink="/tables">
|
||||
Tables
|
||||
</a>
|
||||
<a mat-raised-button routerLink="/logout" *ngIf="nameObject | async as name">
|
||||
<mat-icon>account_box</mat-icon>
|
||||
Logout {{name}}
|
||||
</a>
|
||||
Reference in New Issue
Block a user