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

65 lines
1.4 KiB
HTML

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