zgo/src/app/prompt-receipt/prompt-receipt.component.html

59 lines
1.2 KiB
HTML

<div class="invoice" >
{{ vE.promptreceiptSendLink }}
</div>
<div class="container"
style="margin-top: 10px;
padding: 15px;">
<table style="width:100%;
margin-top: 10px;">
<thead style="width: 100%;">
<tr>
<th class="urlLabel"
style="text-align: left;"
width="94%">{{ vE.promptreceiptReceiptUrl }}
</th>
<th></th>
</tr>
</thead>
<tbody>
<td class="urlDetail"
style="text-align: left;"
width="94%">
<div>
<textarea
style="border: none;
outline: none;
width: 95%;"
cdkTextareaAutosize
cdkAutosizeMinRows="1"
cdkAutosizeMaxRows="4">{{ receiptUrl }}
</textarea>
</div>
</td>
<td class="urlCopyBtn">
<a (click)='copyUrl()' >
<fa-icon [icon]="faCopy"
class="copy-button">
</fa-icon>
</a>
</td>
</tbody>
</table>
<mat-dialog-actions>
<table cellspacing="0" width="100%">
<tr>
<td align="right">
<button mat-raised-button class="text" (click)="close()">
<mat-icon class="icon">close</mat-icon>{{ vE.promptreceiptCloseLbl }}
</button>
</td>
</tr>
</table>
</mat-dialog-actions>
</div>