Glemt adgangskode
Sådan gør du:
- Indtast din e-mailadresse herunder.
- Klik på linket i den mail, du får tilsendt.
- Ret den automatisk genererede adgangskode til noget, du nemmere kan huske.
window.addEventListener("load", function(){
setTimeout(function () {
if (typeof window.cookieconsent !== 'undefined'){
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "#444"
},
"button": {
"background": "#f0ad4e", // orange: "#f0ad4e", //"#14a7d0" //grøn: #5cb85c
"text": "black"
}
},
"theme": "classic",
"position": "bottom",
"static": false,
"type": "opt-in",
"content": {
"message": "🍪 Cookieinfo
Madital.dk bruger cookies til at huske dine indstillinger, analysere trafikken samt til at markedsføre vores website. Du kan til enhver tid ændre dit valg via vores ",
"dismiss": "OK",
"allow": "Det er fint",
"deny": "Afvis",
"link": " cookiepolitik.",
"href": "https://www.madital.dk/om-madital/vilkaar-og-betingelser/cookiepolitik/"
},
onInitialise: function(status) {
if(status == cookieconsent.status.allow) {
runScriptsRequiringConsent();
}
},
onStatusChange: function(status) {
if (this.hasConsented()) {
runScriptsRequiringConsent();
}
/*else {
document.cookie = "_ga=;domain=.madital.dk;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/";
document.cookie = "_gat_UA-1116525-1=;domain=.madital.dk;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/";
document.cookie = "_gid=;domain=.madital.dk;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/";
}*/
createCookie("cookieconsent_time","now",365);
}
})
}
}, 1000);
});