Files
WrenchBoradWeb/www/application/views/jobs/view_jobagree.php
T
2022-07-02 02:40:07 -04:00

107 lines
4.6 KiB
PHP

<?php include('common/jobstrip.php'); ?>
<!--begin::Row-->
<div class="row g-5 g-xl-8">
<div class="col-xl-12">
<!--begin::Charts Widget 1-->
<div class="card card-xl-stretch mb-5 mb-xl-8">
<!--begin::Header-->
<div class="card-header border-0 pt-5">
<!--begin::Title-->
<h3 class="card-title align-items-start flex-column">
<span class="card-label fw-bolder fs-3 mb-1">Additional Terms for Jobs Posting.</span>
</h3>
<!--end::Title-->
</div>
<!--end::Header-->
<!--begin::Body-->
<div class="card-body">
<div class="tab-content">
<div class="tab-pane fade show active" id="kt_table_widget_5_tab_1">
<!--begin::Table container-->
<h4>All terms of sale must follow WrenchBoard policies for buying and selling. Setting and meeting expectations in a listing's terms of sale ensure a smooth transaction and buyer satisfaction while helping WrenchBoard remain a reputable marketplace.</h4>
<br>
<h3 class="text-dark mb-5 fw-boldest">What is the policy? </h3>
<h4> Task or Job owners should provide clear and accurate delivery terms and conditions required to meet the expectations they have set in their listings. These should include:</h4>
<ul class="list-group">
<li class="list-group-item">Delivery mode, timelines, and reviews</li>
<li class="list-group-item">The forms of payment available for the task </li>
<li class="list-group-item"> A returns policy:
<ul class="list-group">
<li class="list-group-item">Clearly stated criteria under which cancellation will be accepted.</li>
<li class="list-group-item">Clearly stated the time period in which the buyer must notify the seller about the delivery delay.</li>
<li class="list-group-item">How refunds/returns/cancellations will be issued</li>
</ul>
</li>
</ul>
<br>
<br>
<br>
<h4>Activity that doesn't follow WrenchBoard policy could result in a range of actions, including for example: administratively ending or canceling listings, hiding or demoting all listings from search results, lowering rating, buying or selling restrictions, and account suspension.
<br>
All fees paid or payable concerning listings or accounts on which we take any action will not be refunded or otherwise credited to your account.</h4>
<br>
<h3 class="text-dark mb-5 fw-boldest">Why does WrencBoard have this policy?</h3>
<h4>Buyers and sellers enter a contract when they complete transactions, so it's necessary to have precise details on what the transaction entails to guarantee satisfaction. This policy also helps sellers meet our performance standards.</h4>
</div>
<div class="tab-pane fade show active" id="kt_table_widget_5_tab_1" style=" padding-top: 35px; text-align: right">
<div id="agree-result"></div> <form method="post" id="agreeForm" action="/jobs/agreejobterms" > <a onclick="start_agree();" class="btn btn-sm btn-primary">Agree to Terms <i class="icon-arrow-right14 position-right"></i></a> </form>
</div>
</div>
</div>
<!--end::Body-->
</div>
<!--end::Charts Widget 1-->
</div>
</div>
<!--end::Row-->
<script type="text/javascript">
<!--
function start_agree() {
// alert(100);
if(confirm("Please confirm Terms Agreement?")) {
// do something
} else {
return false;
}
// $("#agreeForm").submit();
document.getElementById('agreeForm').submit();
return false;
//return true;
/*
$.ajax({
url: "/jobs/agreejobterms?interest_id=0"
}).done(function (data) {
if (data == 0 ){
var url = "/jobs/create";
$(location).attr('href',url)
}
else
{
$('#agree-result').html(data);
}
});
*/
}
// -->
</script>