26 lines
707 B
HTML
26 lines
707 B
HTML
|
<div align="center" mat-dialog-title class="text">
|
||
|
Send the invoice link to your client:
|
||
|
</div>
|
||
|
|
||
|
<mat-dialog-content class="text">
|
||
|
{{invoiceUrl}} <button mat-raised-button (click)="copyUrl()"><mat-icon class="icon">content_copy</mat-icon></button>
|
||
|
</mat-dialog-content>
|
||
|
|
||
|
<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>Sent!
|
||
|
</button>
|
||
|
</td>
|
||
|
<td align="right">
|
||
|
<button mat-raised-button class="text" (click)="close()">
|
||
|
<mat-icon class="icon">close</mat-icon>Cancel
|
||
|
</button>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
</mat-dialog-actions>
|