Files
WrenchBoradWeb/www/application/views/jobs/view_startcreate.php
T
2022-04-09 00:11:52 -04:00

146 lines
7.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php include('common/jobstrip.php'); ?>
<!--begin::Row-->
<div class="row g-5 g-xl-8">
<!--begin::Col-->
<div class="col-xl-9">
<!--begin::Tables Widget 5-->
<div class="card card-xl-stretch mb-5 mb-xl-8">
<!--begin::Header-->
<div class="card-header border-0 pt-5">
<!-- h3 class="card-title align-items-start flex-column">
Create New Job
</h3 -->
<div class="card-toolbar">
<!--begin::Section-->
<div class="mb-17">
<!--begin::Content-->
<div class="d-flex flex-stack mb-5">
<!--begin::Title-->
<h3 class="text-dark">Select a job template</h3>
<!--end::Title-->
<!--begin::Link-->
<a href="/jobs/create" class="fs-6 fw-bold link-primary">Create Custom Job</a>
<!--end::Link-->
</div>
<!--end::Content-->
<!--begin::Separator-->
<div class="separator separator-dashed mb-9"></div>
<!--end::Separator-->
<!--begin::Row-->
<div class="row g-10">
<?php
foreach($template_data as $tdata){
?>
<!--begin::Col-->
<div class="col-md-4">
<!--begin::Hot sales post-->
<div class="card-xl-stretch me-md-6">
<!--begin::Overlay-->
<!--begin::Image-->
<div class="overlay-wrapper bgi-no-repeat bgi-position-center bgi-size-cover card-rounded min-h-175px" style="background-image:url('<?=$tdata['img']?>')"></div>
<!--end::Image-->
<!--end::Overlay-->
<!--begin::Body-->
<div class="mt-5">
<!--begin::Title-->
<div class="fs-4 text-dark fw-bolder text-hover-primary text-dark lh-base"><?=$tdata['name']?></div>
<!--end::Title-->
<!--begin::Text-->
<div class="fw-bold fs-5 text-gray-600 text-dark mt-3"><?=$tdata['description']?></div>
<!--end::Text-->
<!--begin::Text-->
<div class="fs-6 fw-bolder mt-5 d-flex flex-stack">
<!--begin::Label-->
<span class="badge border border-dashed fs-2 fw-bolder text-dark p-2">
<span class="fs-6 fw-bold text-gray-400">estimate-<?=$tdata['timeline_days']?> days</span></span>
<!--end::Label-->
<!--begin::Action-->
<a href="/jobs/create" class="btn btn-sm btn-primary">Continue</a>
<!--end::Action-->
</div>
<!--end::Text-->
</div>
<!--end::Body-->
</div>
<!--end::Hot sales post-->
</div>
<!--end::Col-->
<?php
}
?>
<!--begin::Col-->
<div class="col-md-4">
<!--begin::Hot sales post-->
<div class="card-xl-stretch ms-md-6">
<!--begin::Overlay-->
<!--begin::Image-->
<div class="overlay-wrapper bgi-no-repeat bgi-position-center bgi-size-cover card-rounded min-h-175px" style="background-image:url('/site3/assets/media/jobs/custom_job.jpg')"></div>
<!--end::Image-->
<!--end::Overlay-->
<!--begin::Body-->
<div class="mt-5">
<!--begin::Title-->
<a href="/jobs/create" class="fs-4 text-dark fw-bolder text-hover-primary text-dark lh-base">simply Create any type of job you wanted</a>
<!--end::Title-->
<!--begin::Text-->
<div class="fw-bold fs-5 text-gray-600 text-dark mt-3">Weve been focused on making a the from also not been eye</div>
<!--end::Text-->
<!--begin::Text-->
<div class="fs-6 fw-bolder mt-5 d-flex flex-stack">
<!--begin::Label-->
<span class="badge border border-dashed fs-2 fw-bolder text-dark p-2">
<span class="fs-6 fw-bold text-gray-400">.</span></span>
<!--end::Label-->
<!--begin::Action-->
<a href="/jobs/create" class="btn btn-sm btn-primary">Continue</a>
<!--end::Action-->
</div>
<!--end::Text-->
</div>
<!--end::Body-->
</div>
<!--end::Hot sales post-->
</div>
<!--end::Col-->
</div>
<!--end::Row-->
</div>
<!--end::Section-->
</div>
</div>
<!--end::Header-->
<!--begin::Body-->
<div class="card-body py-3">
<div class="tab-content">
</div>
</div>
<!--end::Body-->
</div>
<!--end::Tables Widget 5-->
</div>
<!--end::Col-->
<?php include('common/jobside.php'); ?>
</div>
<!--end::Row-->