|
@@ -1 +1,83 @@
|
|
-<p>payment-date works!</p>
|
|
|
|
|
|
+<h2
|
|
|
|
+ mat-dialog-title
|
|
|
|
+ fxLayout="row"
|
|
|
|
+ fxLayoutAlign="center center"
|
|
|
|
+ class="personal-info-title"
|
|
|
|
+>
|
|
|
|
+ <!-- <img src="../../../../../../assets/images/arrow.svg" alt="" title="" /> -->
|
|
|
|
+ <div class="text-center">
|
|
|
|
+ <span>Create contractor contract</span>
|
|
|
|
+ <p class="bold">"First payment date"</p>
|
|
|
|
+ </div>
|
|
|
|
+</h2>
|
|
|
|
+<mat-dialog-content class="mat-typography">
|
|
|
|
+ <form>
|
|
|
|
+ <div fxLayout="row wrap" fxLayoutAlign="center center" class="gap-10">
|
|
|
|
+ <div
|
|
|
|
+ fxFlex.lt-md="100"
|
|
|
|
+ fxFlex.gt-sm="98"
|
|
|
|
+ class="form-input"
|
|
|
|
+ fxLayout="column"
|
|
|
|
+ fxLayoutAlign="start stretch"
|
|
|
|
+ >
|
|
|
|
+ <label for="payment_date">
|
|
|
|
+ <span>First payment date <span class="red">*</span></span>
|
|
|
|
+ </label>
|
|
|
|
+ <select id="payment_date"></select>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div fxLayout="row wrap" fxLayoutAlign="center center" class="gap-10 mt-2">
|
|
|
|
+ <div
|
|
|
|
+ fxFlex.lt-md="100"
|
|
|
|
+ fxFlex.gt-sm="48"
|
|
|
|
+ class="form-input custom-input"
|
|
|
|
+ fxLayout="row"
|
|
|
|
+ fxLayoutAlign="space-between center"
|
|
|
|
+ >
|
|
|
|
+ <label for="payment_due" style="margin-bottom: 0">
|
|
|
|
+ <span>Effective date</span>
|
|
|
|
+ </label>
|
|
|
|
+ <span class="span">Mar 11th, 2023</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div fxLayout="row wrap" fxLayoutAlign="center center" class="gap-10">
|
|
|
|
+ <div
|
|
|
|
+ fxFlex.lt-md="100"
|
|
|
|
+ fxFlex.gt-sm="48"
|
|
|
|
+ class="form-input custom-input"
|
|
|
|
+ fxLayout="row"
|
|
|
|
+ fxLayoutAlign="space-between center"
|
|
|
|
+ >
|
|
|
|
+ <label for="payment_due" style="margin-bottom: 0">
|
|
|
|
+ <span>Invoice cycle ends</span>
|
|
|
|
+ </label>
|
|
|
|
+ <span class="span">Mars 31st, 2023</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div fxLayout="row wrap" fxLayoutAlign="center center" class="gap-10">
|
|
|
|
+ <div
|
|
|
|
+ fxFlex.lt-md="100"
|
|
|
|
+ fxFlex.gt-sm="48"
|
|
|
|
+ class="form-input custom-input"
|
|
|
|
+ fxLayout="row"
|
|
|
|
+ fxLayoutAlign="space-between center"
|
|
|
|
+ >
|
|
|
|
+ <label for="payment_due" style="margin-bottom: 0">
|
|
|
|
+ <span>Payment due</span>
|
|
|
|
+ </label>
|
|
|
|
+ <span class="span">Same day</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+</mat-dialog-content>
|
|
|
|
+<mat-dialog-actions fxLayout="row" fxLayoutAlign="space-between center">
|
|
|
|
+ <span class="pageNumber">Page Number 3</span>
|
|
|
|
+
|
|
|
|
+ <div>
|
|
|
|
+ <button mat-button mat-dialog-close>Back</button>
|
|
|
|
+ <button mat-button [mat-dialog-close]="true" cdkFocusInitial class="next">
|
|
|
|
+ Next
|
|
|
|
+ </button>
|
|
|
|
+ </div>
|
|
|
|
+</mat-dialog-actions>
|