zgo/src/app/header/header.component.html

15 lines
443 B
HTML
Raw Normal View History

2021-10-15 19:14:49 +00:00
<mat-toolbar color="primary">
2021-10-28 20:34:48 +00:00
<span align="center">
<a routerLink = "/" class="text">
2021-10-28 18:22:54 +00:00
Z Go!
2021-10-15 19:14:49 +00:00
</a>
2021-10-28 20:34:48 +00:00
<p class="mini text">Last block seen: {{heightUpdate | async}}</p>
2021-10-15 19:14:49 +00:00
</span>
<span class="spacer"></span>
2021-10-21 19:29:04 +00:00
<span align="center">
2021-10-28 20:34:48 +00:00
<button mat-raised-button class="text" (click)="openSettings()">
{{ shortenZaddr((ownerUpdate | async)!.address) }} <mat-icon class="icon">manage_accounts</mat-icon>
</button>
2021-10-20 20:51:14 +00:00
</span>
2021-10-15 19:14:49 +00:00
</mat-toolbar>