var textInputs = $('.form-input input');

textInputs.each(function (index, element) {
if ($(element).val() == ») {
$(element).closest(‘.form-line’).find(«.form-label»).removeClass(«active-label»);
} else {
$(element).closest(‘.form-line’).find(«.form-label»).addClass(«active-label gray-label»);
}
});

$(document).ready(function () {
textInputs.focus(function () {
$(this).parent().parent().find(«.form-label»).addClass(«active-label»);
if ($(this).val() != ») {
$(this).closest(‘.form-line’).find(«.form-label»).removeClass(«gray-label»);
}
});

textInputs.focusout(function () {
if ($(this).val().length === 0) {
$(this).parent().parent().find(«.form-label»).removeClass(«active-label»);
} else {
$(this).parent().parent().find(«.form-label»).addClass(«gray-label»);
}
});
});

$(‘.form-legal-link’).click(function(){
$(«.form-legal-link»).attr({href: «https://www.voyado.com/», target: «_blank»});
this.preventDefault();
});
/* Sett butikk */
$(function() {
$(«#attr_store_Value»).val(«b7aa54ba-2d2c-4657-b89d-ae82009b139e»);
});
/* Date */
const bDay = document.getElementById(‘attr_birthDay_Value’)
if (bDay) {
bDay.type = ‘date’;

let newDate = new Date();
newDate = newDate.toISOString().split(‘T’)[0];
bDay.max = newDate;
}