fix
This commit is contained in:
@@ -1,98 +1,156 @@
|
||||
<!-- Main content -->
|
||||
<div class="content-wrapper">
|
||||
<?php include('common/jobstrip.php'); ?>
|
||||
<?php include('common/jobstrip.php'); ?>
|
||||
|
||||
<!-- Marketing campaigns -->
|
||||
<div class="panel panel-flat">
|
||||
<div class="panel-heading" style="background-color: lightgray; padding-top: 1px; padding-bottom: 3px; padding-left: 10px;">
|
||||
<h5>Create New Job</h5>
|
||||
</div>
|
||||
<div class="panel-heading">
|
||||
<form class="form-horizontal" action="/jobs/create" method='POST'>
|
||||
<!--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">
|
||||
|
||||
|
||||
<div class="panel-body">
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-10 col-md-offset-1">
|
||||
<div class="form-group">
|
||||
<label class="col-lg-2 control-label"> Title [75] :</label>
|
||||
<div class="col-lg-10">
|
||||
<input type="text" class="form-control" name='title' placeholder="Proj title" maxlength="80">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-lg-2 control-label">Description [250]:</label>
|
||||
<div class="col-lg-10">
|
||||
<textarea rows="2" cols="5" class="form-control" name='description' placeholder="Job Description"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-lg-2 control-label">Job Detail:</label>
|
||||
<div class="col-lg-10">
|
||||
<textarea rows="3" cols="5" class="textarea wysihtml5 wysihtml5-min form-control" style="height:180px;" name='job_detail' placeholder="Job Detail"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-lg-2 control-label">Timeline:</label>
|
||||
<div class="col-lg-10">
|
||||
<select class="form-control" name='timeline'>
|
||||
<option value="opt1">Select Market Timeline for this job</option>
|
||||
<option value="2">2 days</option>
|
||||
<option value="3">3 days</option>
|
||||
<option value="4">4 days</option>
|
||||
<option value="5">5 days</option>
|
||||
<option value="6">6 days</option>
|
||||
<option value="7">1 week</option>
|
||||
<option value="14">2 weeks</option>
|
||||
<option value="21">3 weeks</option>
|
||||
<option value="30">1 Month</option>
|
||||
<option value="60">2 Months</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-lg-2 control-label">Price:</label>
|
||||
<div class="col-lg-10">
|
||||
<select class="form-control" name='price'>
|
||||
<option value="opt1">Select Price for this job</option>
|
||||
<?php
|
||||
for ($i = 2000; $i <= 10000; $i = $i + 1000) {
|
||||
echo "<option value='$i'>$i Naira</option>";
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="text-right">
|
||||
<button type="submit" class="btn btn-primary btn-xs">Add Job <i class="icon-arrow-right14 position-right"></i></button>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-4"><a href="/jobs/manage/">Return to job my list</a></div>
|
||||
<div class="col-sm-8">
|
||||
<div class="text-center">
|
||||
<?php echo $job_message; ?>
|
||||
</div></div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--end::Header-->
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
|
||||
<!--begin::Body-->
|
||||
<div class="card-body py-3">
|
||||
<div class="tab-content">
|
||||
|
||||
<form class="form-horizontal" action="/jobs/create" method='POST'>
|
||||
|
||||
|
||||
<div class="panel-body">
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-10 col-md-offset-1">
|
||||
<div class="form-group">
|
||||
<label class="col-lg-2 control-label"> Title [75] :</label>
|
||||
<div class="col-lg-10">
|
||||
<input type="text" class="form-control" name='title' placeholder="Proj title" maxlength="80">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-lg-2 control-label">Description [250]:</label>
|
||||
<div class="col-lg-10">
|
||||
<textarea rows="2" cols="5" class="form-control" name='description' placeholder="Job Description"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-lg-2 control-label">Job Detail:</label>
|
||||
<div class="col-lg-10">
|
||||
<textarea rows="3" cols="5" class="textarea wysihtml5 wysihtml5-min form-control" style="height:180px;" name='job_detail' placeholder="Job Detail"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-lg-2 control-label">Timeline:</label>
|
||||
<div class="col-lg-10">
|
||||
<select class="form-control" name='timeline'>
|
||||
<option value="opt1">Select Market Timeline for this job</option>
|
||||
<option value="2">2 days</option>
|
||||
<option value="3">3 days</option>
|
||||
<option value="4">4 days</option>
|
||||
<option value="5">5 days</option>
|
||||
<option value="6">6 days</option>
|
||||
<option value="7">1 week</option>
|
||||
<option value="14">2 weeks</option>
|
||||
<option value="21">3 weeks</option>
|
||||
<option value="30">1 Month</option>
|
||||
<option value="60">2 Months</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-lg-2 control-label">Price:</label>
|
||||
<div class="col-lg-10">
|
||||
<select class="form-control" name='price'>
|
||||
<option value="opt1">Select Price for this job</option>
|
||||
<?php
|
||||
for ($i = 2000; $i <= 10000; $i = $i + 1000) {
|
||||
echo "<option value='$i'>$i Naira</option>";
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="text-right">
|
||||
<button type="submit" class="btn btn-primary btn-xs">Add Job <i class="icon-arrow-right14 position-right"></i></button>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-4"><a href="/jobs/manage/">Return to job my list</a></div>
|
||||
<div class="col-sm-8">
|
||||
<div class="text-center">
|
||||
<?php echo $job_message; ?>
|
||||
</div></div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!--end::Body-->
|
||||
</div>
|
||||
<!--end::Tables Widget 5-->
|
||||
</div>
|
||||
<!-- /marketing campaigns -->
|
||||
</div>
|
||||
<!-- /main content -->
|
||||
<!--end::Col-->
|
||||
<!--begin::Col-->
|
||||
<div class="col-xl-3">
|
||||
<!--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">
|
||||
.
|
||||
</h3>
|
||||
<div class="card-toolbar">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!--end::Header-->
|
||||
<!--begin::Body-->
|
||||
<div class="card-body py-3">
|
||||
<div class="tab-content">
|
||||
<!--begin::Tap pane-->
|
||||
<div class="tab-pane fade show active" id="kt_table_widget_5_tab_1">
|
||||
<!--begin::Table container-->
|
||||
<div class="table-responsive">
|
||||
<!--begin::Table-->
|
||||
|
||||
..
|
||||
</div>
|
||||
<!--end::Table-->
|
||||
</div>
|
||||
<!--end::Tap pane-->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!--end::Body-->
|
||||
</div>
|
||||
<!--end::Tables Widget 5-->
|
||||
</div>
|
||||
<!--end::Col-->
|
||||
</div>
|
||||
<!--end::Row-->
|
||||
|
||||
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<a class="btn btn-success btn-xs btn-block" href="/jobs/create">Create Job</a>
|
||||
<a class="btn btn-success btn-xs btn-block" href="/jobs/startcreate">Create New Job</a>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
|
||||
|
||||
@@ -0,0 +1,180 @@
|
||||
<?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 Job Templates</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">We’ve 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">
|
||||
<!--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-->
|
||||
<!--begin::Col-->
|
||||
<div class="col-xl-3">
|
||||
<!--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">
|
||||
.
|
||||
</h3>
|
||||
<div class="card-toolbar">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!--end::Header-->
|
||||
<!--begin::Body-->
|
||||
<div class="card-body py-3">
|
||||
<div class="tab-content">
|
||||
<!--begin::Tap pane-->
|
||||
<div class="tab-pane fade show active" id="kt_table_widget_5_tab_1">
|
||||
<!--begin::Table container-->
|
||||
<div class="table-responsive">
|
||||
<!--begin::Table-->
|
||||
|
||||
..
|
||||
</div>
|
||||
<!--end::Table-->
|
||||
</div>
|
||||
<!--end::Tap pane-->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!--end::Body-->
|
||||
</div>
|
||||
<!--end::Tables Widget 5-->
|
||||
</div>
|
||||
<!--end::Col-->
|
||||
</div>
|
||||
<!--end::Row-->
|
||||
|
||||
+7
-6
@@ -65,18 +65,19 @@
|
||||
<span class="spinner-border spinner-border-sm align-middle ms-2"></span></span>
|
||||
</button>
|
||||
<div class="text-center text-muted text-uppercase fw-bolder mb-5">or</div>
|
||||
<!--a href="#" class="btn btn-flex flex-center btn-light btn-lg w-100 mb-5">
|
||||
<!--begin::Google link-->
|
||||
<a href="<?php echo isset($login_links)?$login_links['Google']:'#'; ?>" class="btn btn-flex flex-center btn-light btn-lg w-100 mb-5">
|
||||
<img alt="Logo" src="/site3/assets/media/svg/brand-logos/google-icon.svg" class="h-20px me-3" />Continue with Google</a -->
|
||||
<!--end::Google link-->
|
||||
<!--begin::Google link-->
|
||||
<!--begin::Facebook link-->
|
||||
<a href="<?php echo $this->lib_login->getLoginUrl(); ?>" class="btn btn-flex flex-center btn-light btn-lg w-100 mb-5">
|
||||
<img alt="Logo" src="/site3/assets/media/svg/brand-logos/facebook-4.svg" class="h-20px me-3" />Continue with Facebook</a>
|
||||
<!--end::Google link-->
|
||||
<!--begin::Google link-->
|
||||
<!--end::Facebook link-->
|
||||
<!--begin::Apple link-->
|
||||
<!-- a href="#" class="btn btn-flex flex-center btn-light btn-lg w-100">
|
||||
<img alt="Logo" src="/site3/assets/media/svg/brand-logos/apple-black.svg" class="h-20px me-3" />Continue with Apple</a -->
|
||||
<!--end::Google link-->
|
||||
<?php echo isset($login_links) ? $login_links :''; ?>
|
||||
<!--end::Apple link-->
|
||||
<?php /* echo isset($login_links) ? $login_links :''; */ ?>
|
||||
</div>
|
||||
<!--end::Actions-->
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user