diff --git a/src/components/AuthPages/AuthLayout.jsx b/src/components/AuthPages/AuthLayout.jsx index 43e745a..582bc01 100644 --- a/src/components/AuthPages/AuthLayout.jsx +++ b/src/components/AuthPages/AuthLayout.jsx @@ -11,15 +11,30 @@ export default function LoginLayout({ slogan, children }) {
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. +
- What is the policy? - 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: - Delivery mode, timelines, and reviews - The forms of payment available for the task - A returns policy: - Clearly stated criteria under which cancellation will be accepted. - Clearly stated the time period in which the buyer must notify the seller about the delivery delay. - How refunds/returns/cancellations will be issued +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:
+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. + 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.
- Why does WrencBoard have this policy? - 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. +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.
+ + {/* error or success display */} + {request.message && !request.status ? +{details.title}
-This Job have been sent to public view
-This Job will expire
-Opportunity to make some money by introducing 10 of our recent stories from our
+This Job have been sent to public view
+This Job will expire
Actions
- -Job sent to public view
-Actions
+ +Job sent to public view
+{value}
+ +{value}
> ) } diff --git a/src/services/SiteService.js b/src/services/SiteService.js index 0f19ea1..a8e832b 100644 --- a/src/services/SiteService.js +++ b/src/services/SiteService.js @@ -32,6 +32,10 @@ class SiteService { return this.postAuxEnd('/familyadd', reqData) } + familyListings(reqData) { + return this.postAuxEnd('/familylist', reqData) + } + //---------------------------------------- ----- //---------------------------------------- ----- // Unified call below diff --git a/src/services/UsersService.js b/src/services/UsersService.js index b67b52e..60bd7fb 100644 --- a/src/services/UsersService.js +++ b/src/services/UsersService.js @@ -350,7 +350,7 @@ class usersService { }; return this.postAuxEnd("/familymanage", postData); } - + //END POINT CALL FOR ACCOUNT TOP startTopUp(post){ var postData = { @@ -415,6 +415,17 @@ class usersService { return this.postAuxEnd("/accounttypes", postData); } + // END POINT TO ACCEPT TERMS AND AGREEMENT + jobManagerAgree() { + var postData = { + uid: localStorage.getItem("uid"), + member_id: localStorage.getItem("member_id"), + sessionid: localStorage.getItem("session_token"), + action: 13002 + }; + return this.postAuxEnd("/jobmanageragree", postData); + } + verifyEmail(code) { const reqData = { verify_link: code,