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

52 lines
1.3 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">
<button mat-raised-button
style="background: #ff4700;
font-weight: 700;
color: white;"
[routerLink]="['/orders']">
View Orders
</button>
<button mat-raised-button
style="background: #ff4700;
color: white;"
class="text" (click)="openSettings()">
2021-11-11 15:18:38 +00:00
<mat-icon class="icon">manage_accounts</mat-icon>
</button>
<a mat-raised-button
style="background: #ff4700;
color: white;"
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>
<app-item-list></app-item-list>
</td>
<td>
<app-order></app-order>
</td>
</tr>
</table>
</div>