Brak zdjęcia
Opis
Praca jako dodatkowe źródło dochodu bądź na stałe .
Dobre wynagrodzenie uzależnione od zaangażowania .
Praca zdalna w domu .
Praca z każdego miejsca na świecie .
Praca dodatkowa bądź stała
Dodane 04 lutego 11:13.
Zaloguj się, aby skontaktować się ze sprzedawcą i uzyskać dostęp do wszystkich funkcji witryny
Zaloguj się / Załóż konto
✎ Wyślij wiadomość
Opis
Praca jako dodatkowe źródło dochodu bądź na stałe .
Dobre wynagrodzenie uzależnione od zaangażowania .
Praca zdalna w domu .
Praca z każdego miejsca na świecie .
Henryka
na Bazarok od lutego 2023 r.
function closeMenu(){
document.getElementById("myTopnav").style.position='';
document.getElementById("myTopnav").className = "topnav";
document.getElementById("hide").style.display='none';
document.getElementById("logoNav").style.display='none';
document.getElementById("contentNav").style.display='none';
}
window.addEventListener("resize", function(event) {
closeMenu();
})
window.addEventListener('click', function(e){
if (!document.getElementById('myTopnav').contains(e.target)){
closeMenu();
}
});
function showMenu() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " menu";
document.getElementById("myTopnav").style.position='fixed';
document.getElementById("hide").style.display='block';
document.getElementById("logoNav").style.display='block';
document.getElementById("contentNav").style.display='block';
} else {
closeMenu();
}
}
document.querySelectorAll('.favl').forEach(function(element) {
element.addEventListener('click', function(event) {
event.preventDefault();
modal('modal_signup');
$.ajax({
type:'POST',
url:'https://www.bazarok.pl/ctrl/',
data:{'r':'52'}
});
return false;
});
});
$(".modalSignup_close").on("click",function(){
closeModal($(this).data("modal"));
});
$('#fade').on('click', function () {
closeModal('modal_signup');
closeModal('flag_modal');
closeModal('infos_modal');
});
$(".asignin").click(function(){
modal('modal_signup');
$.ajax({
type:'POST',
url:'https://www.bazarok.pl/ctrl/',
data:{'r':'52'}
});
return false;
});
$("#fav").click(function(){
$.ajax({
type:'POST',
url:'https://www.bazarok.pl/ctrl/',
data:{'r':'10','locale':'pl-pl',id_ad:675505580},
success:function(data){$("#fav").html(data);}
});
return false;
});
$("#flag_l").click(function(){modal('flag_modal');return false;});
$(".modalFlag_close").on("click",function(){
closeModal($(this).data("modal"));
});
$("#frm_flag").submit(function(e) {
e.preventDefault();
}).validate({
rules:{id_flag:{required:true}},
submitHandler:function() {
$.ajax({
type:'POST',
url:'https://www.bazarok.pl/ctrl/',
data:$("#frm_flag").serialize()+'&r=11&id_ad=675505580&locale=pl-pl',
success:function(data){$("#flag").html(data);closeModal($('.modalFlag_close').data("modal"));}
});
},
messages:{id_flag:"Wybierz kategorię"}
});
$("#si").on("click",function(e){
e.preventDefault();
$('#wrapLogin,#wrapCode,#wrapCodePwd,#wrapCodeMail').css({display:'none'});
});
$("#lo").on("click",function(e){
e.preventDefault();
$('#wrapCode,#wrapCodePwd,#wrapCodeMail').css({display:'none'});
$('#wrapLogin').css({display:'block'});
});
$("#resetpwd").on("click",function(e){
e.preventDefault();
$('#wrapCodeMail').css({display:'block'});
$('#wrapLogin,#wrapCode,#wrapCodePwd').css({display:'none'});
});
$("#backpwd").on("click",function(e){
e.preventDefault();
$('#wrapCodeMail,#wrapCode,#wrapCodePwd').css({display:'none'});
$('#wrapLogin').css({display:'block'});
});
$("#backpwd2").on("click",function(e){
e.preventDefault();
$('#wrapCode,#wrapLogin,#wrapCodePwd').css({display:'none'});
$('#wrapCodeMail').css({display:'block'});
});
$("#formCodeMail").submit(function(e) {
e.preventDefault();
}).validate({
submitHandler:function() {
var email=$("#email3").val();
$.ajax({
type:'POST',
async:false,
url:'https://www.bazarok.pl/ctrl/',
data:{'r':48,'email':email},
success:function(r){
if(r==0){
document.getElementById("err_code_mail").innerHTML="Nie znaleziono konta o podanym adresie e-mail.";
$("#code").css("border-color","red");
}else{
$('#enter_code').html(r);
$('#wrapCode').css({display:'block'});
$('#wrapLogin,#wrapCodeMail').css({display:'none'});
}
}
});
},
rules:{email3:{required:{depends:function(){$(this).val($.trim($(this).val()).replace(/ /g,''));return true;}},email:true}},
messages:{
email3:"Nieprawidłowy adres e-mail",
}
});
$("#formCode").submit(function(e) {
e.preventDefault();
}).validate({
submitHandler:function() {
var code=$("#code").val();
var email=$("#email3").val();
$.ajax({
type:'POST',
async:false,
url:'https://www.bazarok.pl/ctrl/',
data:{'r':49,'code':code,'email':email},
success:function(r){
if(r==1){
$('#wrapCodePwd').css({display:'block'});
$('#wrapCodeMail,#wrapCode,#wrapLogin').css({display:'none'});
}else{
document.getElementById("err_code").innerHTML="Kod nieprawidłowy";
$("#code").css("border-color","red");
}
}
});
},
rules:{code:{required:true}},
messages:{
code:"Kod nieprawidłowy"
}
});
$("#formCodePwd").submit(function(e) {
e.preventDefault();
}).validate({
submitHandler:function() {
var code=$("#code").val();
var email=$("#email3").val();
var pwd=$("#pwd").val();
$.ajax({
type:'POST',
async:false,
url:'https://www.bazarok.pl/ctrl/',
data:{'r':50,'code':code,'email':email,'pwd':pwd},
success:function(r){
if(r==1){
location.reload();
}
}
});
},
rules:{pwd:{required:true,minlength:7}},
messages:{
pwd:"Hasło musi zawierać co najmniej 7 znaków"
}
});
function signin(email,pwd,callback=''){
var err=0;
if(email!="" && pwd!=""){
$.ajax({
type:'POST',
async:false,
url:'https://www.bazarok.pl/ctrl/',
data:{'email':email,'pwd':pwd,'r':'15'},
success:function(r){
if(r!=0){
if(callback!=''){
window.location.replace(callback);
}else{
window.location.replace("https://www.bazarok.pl/ogloszenie/praca-dodatkowa-badz-sta%C5%82a-675505580.html");
}
}else{err=1;}
}
});
}else{err=1;}
if(err==1){
document.getElementById("err").innerHTML="Nieprawidłowy adres e-mail lub hasło.";
}
}
$("#login").validate({
submitHandler:function(form){
var inputs = document.getElementById("login").elements;
var email=inputs["email"].value;
var password=inputs["password"].value;
signin(email, password, "/ogloszenie/praca-dodatkowa-badz-sta%C5%82a-675505580.html");
},
rules:{password:{required:true},email:{required:{depends:function(){$(this).val($.trim($(this).val()).replace(/ /g,''));return true;}},email:true}},
messages:{
email:"Nieprawidłowy adres e-mail",
password:"Nieprawidłowe hasło"
}
});
$("#signup").validate({
submitHandler:function(form){
var inputs = document.getElementById("signup").elements;
var email=inputs["email"].value;
var name=inputs["name"].value;
var password=inputs["password"].value;
signup(email,password,name,"/ogloszenie/praca-dodatkowa-badz-sta%C5%82a-675505580.html");
},
rules:{password:{required:true},name:{required:true},email:{required:{depends:function(){$(this).val($.trim($(this).val()).replace(/ /g,''));return true;}},email:true}},
messages:{
email:"Nieprawidłowy adres e-mail",
name:"Wpisz swoje imię lub pseudo",
password:"Hasło musi zawierać co najmniej 7 znaków."
}
});
function signup(email,password,name, callback=''){
$.ajax({
type:'POST',
url:'https://www.bazarok.pl/ctrl/',
data:{'email':email,'password':password,'name':name,'auth':'email'},
success:function(r){
var o=JSON.parse(r);
if(o.is_created===false){
document.getElementById("err_signup").innerHTML="Ten adres e-mail został już użyty do utworzenia innego profilu. Spróbuj ponownie, używając innego adresu.";
$("#email").css("border-color","red");
}else{
if(callback!=''){
window.location.replace(callback);
}else{
window.location.replace("https://www.bazarok.pl/ogloszenie/praca-dodatkowa-badz-sta%C5%82a-675505580.html");
}
}
}
});
}function tr(){
$.ajax({
type:'POST',
url:'https://www.bazarok.pl/ctrl/',
data:{'r':'36','page':'ad.php'},
success:function(r){
window.location.replace("https://www.bazarok.pl/dodaj-ogloszenie.html");
},error: function (xhr) {
window.location.replace("https://www.bazarok.pl/dodaj-ogloszenie.html");
}
});
}
const gallery = GLightbox({elements: []});
function parseJwt (token) {
var base64Url = token.split('.')[1];
var base64 = base64Url.replace(/-/g, '+').replace(/_/g, '/');
var jsonPayload = decodeURIComponent(atob(base64).split('').map(function(c) {
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
}).join(''));
return JSON.parse(jsonPayload);
};
var src='';
function onClickHandlerPageSignup(){
src='page';
}
function onClickHandlerModalSignup(){
src='modal';
}
function gsignin(e){
var user = parseJwt(e.credential);
$.ajax({
type:'POST',
async:false,
url:'https://www.bazarok.pl/ctrl/',
data:{'r':'34','locale':'pl-pl','email':user.email,'given_name':user.given_name,'family_name':user.family_name,'name':user.name,'picture':user.picture,'p':'ad.php','src':src},
success:function(r){
console.log(r);
if(r!=0){
window.location.replace("https://www.bazarok.pl/ogloszenie/praca-dodatkowa-badz-sta%C5%82a-675505580.html");
}else{err=1;}
}
});
}
window.onload = function () {
google.accounts.id.initialize({
client_id: '731332360322-9j908olnkbbi0p055mtdoi6vhjveel78.apps.googleusercontent.com',
callback: gsignin
});
};
function acceptCookies() {
document.getElementById('cookie-overlay').style.display = 'none';
document.getElementById('cookie-banner').style.display = 'none';
document.getElementById('contentWrapper').classList.remove('blurred');
window.localStorage.setItem("coo", "accepted");
}
function refuseCookies() {
document.getElementById('cookie-overlay').style.display = 'none';
document.getElementById('cookie-banner').style.display = 'none';
document.getElementById('contentWrapper').classList.remove('blurred');
window.localStorage.setItem("coo", "refused");
}
if (window.localStorage.getItem("coo") === null) {
document.getElementById('cookie-overlay').style.display = 'block';
document.getElementById('cookie-banner').style.display = 'flex';
document.getElementById('contentWrapper').classList.add('blurred');
}