zgo/src/app/viewer/viewer.component.html

45 lines
1.1 KiB
HTML
Raw Normal View History

2021-10-21 16:22:48 +00:00
<app-header></app-header>
<div class="shop-menu" align="center">
<div style="margin-top: 8px;">
<div style="font-size: 24px;
font-weight: 700;">
{{(ownerUpdate | async)!.name}}
</div>
<div class="small">
{{ shortenZaddr((ownerUpdate | async)!.address) }}
</div>
</div>
<div class="main-buttons">
2022-07-20 14:03:40 +00:00
<button mat-raised-button color="primary"
[routerLink]="['/orders']">
View Orders
</button>
2022-07-20 14:03:40 +00:00
<button mat-raised-button color="primary"
class="text" (click)="openSettings()">
2021-11-11 15:18:38 +00:00
<mat-icon class="icon">manage_accounts</mat-icon>
</button>
2022-07-20 14:03:40 +00:00
<a mat-raised-button color="primary"
href="https://zgo.cash/"
target="_blank"
rel="noopener noreferrer">
<mat-icon class="icon">help</mat-icon>
2021-11-18 15:57:22 +00:00
</a>
</div>
2021-10-15 19:14:49 +00:00
</div>
2021-11-18 15:57:22 +00:00
<div *ngIf="orientation">
2021-11-11 15:18:38 +00:00
<app-order></app-order>
<app-item-list [zecPrice]="price"></app-item-list>
2021-11-18 15:57:22 +00:00
</div>
<div *ngIf="!orientation" align="center">
<table cellspacing="0" width="75%">
<tr>
<td>
2022-07-20 14:25:51 +00:00
<app-item-list [zecPrice]="price"></app-item-list>
2021-11-18 15:57:22 +00:00
</td>
<td>
<app-order></app-order>
</td>
</tr>
</table>
</div>