zgo/src/app/scan/scan.component.html

28 lines
828 B
HTML
Raw Normal View History

2021-11-10 15:25:26 +00:00
<div align="center" mat-dialog-title>
2022-01-22 13:49:22 +00:00
<h4 class="text">Scan the QR code</h4>
2021-11-10 15:25:26 +00:00
</div>
<mat-dialog-content>
2021-11-17 22:03:46 +00:00
<div align="center">
<p class="text">Ensure to check the "Include Reply-To" box in your wallet before sending your memo.</p>
<div class="qrcode" id="checkout-qr"></div>
</div>
2021-11-10 15:25:26 +00:00
</mat-dialog-content>
<mat-dialog-actions>
<table cellspacing="0" width="100%">
<tr>
<td>
2021-11-17 22:03:46 +00:00
<button mat-raised-button class="text" color="primary" (click)="confirm()">
<mat-icon class="icon">verified_user</mat-icon>Memo Sent!
</button>
</td>
<td align="right">
<button mat-raised-button class="text" (click)="close()">
<mat-icon class="icon">close</mat-icon>Cancel
2021-11-10 15:25:26 +00:00
</button>
</td>
</tr>
</table>
2021-11-17 22:07:26 +00:00
<p class="small text">Can't scan? Use this <a [href]="zcashUrl">wallet link</a>.
2021-11-10 15:25:26 +00:00
</mat-dialog-actions>