Description
Explore the rich flavours of Vietnam at Vakna Bakery, your premier Vietnamese cafe in Caroline Springs! Enjoy in the authenticity of our Bahn Mi rolls, Rice Paper rolls, and other culinary delights including freshly grounded coffee, meticulously crafted with care and bursting with mouthwatering ingredients. Embark on a culinary journey that transports you to the heart of Vietnamese cuisine. Immerse yourself in the delicious offerings at Vakna Bakery, where each bite narrates a tale of flavor and tradition. Join us and discover the taste of Vietnam right in the heart of Caroline Springs!
Visit Website
0
Welcome to Food and Wine with Love.
or
For faster login or register use your social account.
Facebook
window.onscroll = function() {myFunction()};
var header = document.getElementById("myHeader");
var sticky = header.offsetTop;
function myFunction() {
if (window.pageYOffset > sticky) {
header.classList.add("sticky");
} else {
header.classList.remove("sticky");
}
}
function initAutocomplete(){
}
function validateReg() {
if ($('#regPassmessage').html() == '' && $('#regmessage').html() == '') {
return true;
}
return false;
}
jQuery(document).ready(function($) {
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content')
}
});
$(".btn-refresh-captcha").click(function () {
$.ajax({
type: 'GET',
url: 'https://foodandwinewithlove.com.au/refresh_captcha',
success: function (data) {
$('.register_captcha_span').html(data.captcha);
}
})
});
$("#loginForm").on('submit', function (event) {
if ($(this)[0].checkValidity() === false) {
event.preventDefault();
event.stopPropagation();
return false;
}
var formData = new FormData($(this)[0]);
$("#loginError").slideUp(100);
$("#loginSuccess").slideUp(100);
$.ajax({
type: "POST",
url: "https://foodandwinewithlove.com.au/login",
data: formData,
processData: false,
contentType: false,
success: function( res ) {
if (typeof res.status != 'undefined' && res.status == 200) {
$("#loginSuccess").slideDown(1000, function(){
window.location.reload();
});
$("#loginError").slideUp(100);
$(".verifiedSuccess").slideUp(100);
} else if (res.status == 201) {
$("#loginError").find('p').text(res.msg);
$("#loginError").slideDown(1000);
$("#loginSuccess").slideUp(100);
$(".verifiedSuccess").slideUp(100);
}
},
error: function(xhr , status, err) {
var errorJson = xhr.responseJSON;
var errorMsg = '';
if (typeof errorJson != 'undefined' && typeof errorJson.errors != 'undefined' && errorJson != '') {
$.each(errorJson.errors, function(key, val){
$.each(val, function(k, msg){
if (errorMsg != '') {
errorMsg = errorMsg + '
';
}
errorMsg = errorMsg + msg;
});
});
} else {
errorMsg = 'Oops, Some error has been occurred!';
}
$("#loginError").find('p').text(errorMsg);
$("#loginError").slideDown(1000);
$("#loginSuccess").slideUp(100);
}
});
return false;
});
$("#lostPwdForm").on('submit', function (event) {
if ($(this)[0].checkValidity() === false) {
event.preventDefault();
event.stopPropagation();
return false;
}
var formData = new FormData($(this)[0]);
$("#fgPwdError").slideUp(100);
$("#fgPwdSuccess").slideUp(100);
$.ajax({
type: "POST",
url: "https://foodandwinewithlove.com.au/password/email",
data: formData,
processData: false,
contentType: false,
headers: {
Accept: "application/json; charset=utf-8"
},
success: function( res ) {
$("#fgPwdSuccess").find('p').text(res.message);
$("#fgPwdSuccess").slideDown(1000, function(){
window.location.reload();
});
$("#fgPwdError").slideUp(100);
},
error: function(xhr , status, err) {
var errorJson = xhr.responseJSON;
var errorMsg = '';
if (typeof errorJson != 'undefined' && typeof errorJson.errors != 'undefined' && errorJson != '') {
$.each(errorJson.errors, function(key, val){
$.each(val, function(k, msg){
if (errorMsg != '') {
errorMsg = errorMsg + '
';
}
errorMsg = errorMsg + msg;
});
});
} else {
errorMsg = 'Oops, Some error has been occurred!';
}
$("#fgPwdError").find('p').text(errorMsg);
$("#fgPwdError").slideDown(1000);
$("#fgPwdSuccess").slideUp(100);
}
});
return false;
});
$('#regPassword, #regConfirmPassword').on('keyup', function () {
var regBtn = $('#doReg');
if ($('#regPassword').val().length < 8) {
$('#regPassmessage').html('Password must contain minimum 8 characters.').css('color', 'red');
regBtn.attr('disabled', true);
} else {
$('#regPassmessage').html('');
if ($('#regPassword').val() == $('#regConfirmPassword').val()) {
$('#regmessage').html('');
regBtn.removeAttr('disabled');
} else {
$('#regmessage').html('Confirm password must be same as password.').css('color', 'red');
regBtn.attr('disabled', true);
}
}
});
$("#lostPwd").on('click', function(){
$("#loginFormView").hide();
$("#forgotForm").show();
});
$("#backToLogin").on('click', function(){
$("#forgotForm").hide();
$("#loginFormView").show();
});
});
$(".advertisement").click(function(event){
event.preventDefault();
var self = this;
$.ajax({
type: 'POST',
url: 'https://foodandwinewithlove.com.au/api/no-of-clicks',
data: {id: $(this).data('id')},
complete: function(data){
if (self.href != 'javascript:;') {
window.open(self.href);
}
}
});
});