|
@@ -0,0 +1,142 @@
|
|
|
+<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">"Personal Information"</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="48"
|
|
|
+ class="form-input"
|
|
|
+ fxLayout="column"
|
|
|
+ fxLayoutAlign="start stretch"
|
|
|
+ >
|
|
|
+ <label for="entity">
|
|
|
+ <span>Entity <span class="red">*</span></span>
|
|
|
+ </label>
|
|
|
+ <input type="text" id="entity" placeholder="Enter entity name" />
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ fxFlex.lt-md="100"
|
|
|
+ fxFlex.gt-sm="48"
|
|
|
+ class="form-input"
|
|
|
+ fxLayout="column"
|
|
|
+ fxLayoutAlign="start stretch"
|
|
|
+ >
|
|
|
+ <label for="contractor_name">
|
|
|
+ <span>Contractor name <span class="red">*</span></span>
|
|
|
+ </label>
|
|
|
+ <input
|
|
|
+ type="text"
|
|
|
+ id="contractor_name"
|
|
|
+ placeholder="Enter contractor name"
|
|
|
+ />
|
|
|
+ </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"
|
|
|
+ fxLayout="column"
|
|
|
+ fxLayoutAlign="start stretch"
|
|
|
+ >
|
|
|
+ <label for="email">
|
|
|
+ <span
|
|
|
+ >Contractor personal email address <span class="red">*</span></span
|
|
|
+ >
|
|
|
+ </label>
|
|
|
+ <input type="email" id="email" placeholder="Enter email address" />
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ fxFlex.lt-md="100"
|
|
|
+ fxFlex.gt-sm="48"
|
|
|
+ class="form-input"
|
|
|
+ fxLayout="column"
|
|
|
+ fxLayoutAlign="start stretch"
|
|
|
+ >
|
|
|
+ <label for="tax">
|
|
|
+ <span>Contractor's tax residence <span class="red">*</span></span>
|
|
|
+ </label>
|
|
|
+ <input
|
|
|
+ type="text"
|
|
|
+ id="tax"
|
|
|
+ placeholder="Enter Contractor's tax residence"
|
|
|
+ />
|
|
|
+ </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"
|
|
|
+ fxLayout="column"
|
|
|
+ fxLayoutAlign="start stretch"
|
|
|
+ >
|
|
|
+ <label for="role">
|
|
|
+ <span>Role<span class="red">*</span></span>
|
|
|
+ </label>
|
|
|
+ <input type="text" id="role" placeholder="Enter role" />
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ fxFlex.lt-md="100"
|
|
|
+ fxFlex.gt-sm="48"
|
|
|
+ class="form-input"
|
|
|
+ fxLayout="column"
|
|
|
+ fxLayoutAlign="start stretch"
|
|
|
+ >
|
|
|
+ <label for="security_level">
|
|
|
+ <span>Security level <span class="red">*</span></span>
|
|
|
+ </label>
|
|
|
+ <input
|
|
|
+ type="text"
|
|
|
+ id="security_level"
|
|
|
+ placeholder="Enter security level"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div fxLayout="row wrap" fxLayoutAlign="center center" class="gap-10 mt-2">
|
|
|
+ <div
|
|
|
+ fxFlex.lt-md="100"
|
|
|
+ fxFlex.gt-sm="98"
|
|
|
+ class="form-input"
|
|
|
+ fxLayout="column"
|
|
|
+ fxLayoutAlign="start stretch"
|
|
|
+ >
|
|
|
+ <label for="role">
|
|
|
+ <span>Scope of work<span class="red">*</span></span>
|
|
|
+ </label>
|
|
|
+ <textarea cols="6" rows="6"></textarea>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div fxLayout="row wrap" fxLayoutAlign="start center" class="gap-10 mt-2">
|
|
|
+ <div
|
|
|
+ fxFlex.lt-md="100"
|
|
|
+ fxFlex.gt-sm="48"
|
|
|
+ class="form-input"
|
|
|
+ fxLayout="column"
|
|
|
+ fxLayoutAlign="start stretch"
|
|
|
+ >
|
|
|
+ <label for="date">
|
|
|
+ <span>Contractor’s start date<span class="red">*</span></span>
|
|
|
+ </label>
|
|
|
+ <input type="date" id="date" placeholder="select date" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+</mat-dialog-content>
|
|
|
+<mat-dialog-actions align="end">
|
|
|
+ <button mat-button mat-dialog-close>Back</button>
|
|
|
+ <button mat-button [mat-dialog-close]="true" cdkFocusInitial class="next">
|
|
|
+ Next
|
|
|
+ </button>
|
|
|
+</mat-dialog-actions>
|