|
@@ -0,0 +1,42 @@
|
|
|
+<section class="contract-type" fxLayout="column" fxLayoutAlign="center center">
|
|
|
+ <main>
|
|
|
+ <h2 class="bold">Create Contract</h2>
|
|
|
+ <p class="bold">
|
|
|
+ Start creating your agreement by selecting the type of worker
|
|
|
+ </p>
|
|
|
+ </main>
|
|
|
+ <div class="gap-10 mt-3" fxLayout="row wrap" fxLayoutAlign="center center">
|
|
|
+ <div class="contractor" fxFlex.lt-md="100" fxFlex.gt-sm="30">
|
|
|
+ <img
|
|
|
+ class="logo"
|
|
|
+ src="../../../../assets/images/contractor.svg"
|
|
|
+ alt=""
|
|
|
+ title=""
|
|
|
+ />
|
|
|
+ <div fxLayout="row" fxLayoutAlign="start center" class="info">
|
|
|
+ <img src="../../../../assets/images/info.svg" alt="" title="" />
|
|
|
+ <span
|
|
|
+ >A person who is self employed and provides services for an
|
|
|
+ organization under a written contract of services</span
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="employee" fxFlex.lt-md="100" fxFlex.gt-sm="30">
|
|
|
+ <img
|
|
|
+ class="logo"
|
|
|
+ src="../../../../assets/images/employee_cont.svg"
|
|
|
+ alt=""
|
|
|
+ title=""
|
|
|
+ />
|
|
|
+ <div fxLayout="row" fxLayoutAlign="start center" class="info">
|
|
|
+ <img src="../../../../assets/images/info.svg" alt="" title="" />
|
|
|
+ <span
|
|
|
+ >A person who is employed by an organization for a wage or
|
|
|
+ salary</span
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <button class="next">Next</button>
|
|
|
+</section>
|