{"id":2744,"date":"2026-05-06T17:39:20","date_gmt":"2026-05-06T15:39:20","guid":{"rendered":"https:\/\/www.turforeningen.dk\/?page_id=2744"},"modified":"2026-05-07T09:41:05","modified_gmt":"2026-05-07T07:41:05","slug":"medlem-login","status":"publish","type":"page","link":"https:\/\/www.turforeningen.dk\/index.php\/medlem-login\/","title":{"rendered":"medlem-login"},"content":{"rendered":"<div id=\"pl-2744\"  class=\"panel-layout\" ><div id=\"pg-2744-0\"  class=\"panel-grid panel-no-style\" ><div id=\"pgc-2744-0-0\"  class=\"panel-grid-cell\" ><div id=\"panel-2744-0-0-0\" class=\"so-panel widget widget_sow-editor panel-first-child panel-last-child\" data-index=\"0\" ><div\n\t\t\t\n\t\t\tclass=\"so-widget-sow-editor so-widget-sow-editor-base\"\n\t\t\t\n\t\t>\n<div class=\"siteorigin-widget-tinymce textwidget\">\n\t    <div class=\"ntf-login-wrapper\">\r\n        <div class=\"ntf-login-header\">\r\n            <img decoding=\"async\" src=\"https:\/\/www.turforeningen.dk\/wp-content\/uploads\/2026\/05\/majlogo.png\"\r\n                 alt=\"Nordsj\u00e6lland Turforening\"\r\n                 class=\"ntf-login-logo\" \/>\r\n            <span class=\"ntf-login-badge\">Medlemsportal<\/span>\r\n            <h2>Velkommen tilbage<\/h2>\r\n            <p>Log ind med dit telefonnummer<\/p>\r\n        <\/div>\r\n\r\n        \r\n        \r\n        \r\n            <p class=\"ntf-login-intro\" style=\"text-align: center;\">\r\n                Indtast kun dit <strong>8-cifrede mobilnummer<\/strong>.<br>\r\n            <\/p>\r\n\r\n            <form method=\"post\" class=\"ntf-login-form\">\r\n                <input type=\"hidden\" id=\"ntf_telefon_nonce\" name=\"ntf_telefon_nonce\" value=\"0339894e5e\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/index.php\/wp-json\/wp\/v2\/pages\/2744\" \/>                <div class=\"ntf-login-felt\">\r\n                    <label for=\"ntf_telefon\">Mobilnummer<\/label>\r\n                    <div class=\"ntf-telefon-wrap\">\r\n                        <span class=\"ntf-telefon-prefix\" aria-hidden=\"true\">+45<\/span>\r\n                        <input type=\"tel\"\r\n                               id=\"ntf_telefon\"\r\n                               name=\"ntf_telefon\"\r\n                               placeholder=\"12345678\"\r\n                               maxlength=\"8\"\r\n                               pattern=\"[0-9]{8}\"\r\n                               inputmode=\"numeric\"\r\n                               autocomplete=\"tel-national\"\r\n                               oninput=\"this.value=this.value.replace(\/\\D\/g,'')\"\r\n                               required>\r\n                    <\/div>\r\n                    <span class=\"ntf-felt-hint\" style=\"text-align: center;\">Udelad landekode. Mellemrum er ikke tilladt.<\/span>\r\n                <\/div>\r\n                <button type=\"submit\" class=\"ntf-btn-prim\">\r\n                    Send kode <svg class=\"ntf-ikon\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"\/><polyline points=\"12 5 19 12 12 19\"\/><\/svg>                <\/button>\r\n            <\/form>\r\n\r\n        \r\n    <\/div>\r\n\r\n    <style>\r\n    .ntf-pin-bokse {\r\n        display: flex;\r\n        gap: 10px;\r\n        justify-content: center;\r\n        margin-bottom: 6px;\r\n    }\r\n    .ntf-pin-boks {\r\n        width: 52px;\r\n        height: 58px;\r\n        text-align: center;\r\n        font-size: 1.6rem;\r\n        font-weight: 700;\r\n        border: 1px solid #ddd;\r\n        border-radius: 5px;\r\n        outline: none;\r\n        transition: border-color 0.15s;\r\n        background: #fff;\r\n        color: #282828;\r\n    }\r\n    .ntf-pin-boks:focus {\r\n        border-color: #55983d;\r\n    }\r\n    .ntf-pin-boks.udfyldt {\r\n        border-color: #55983d;\r\n        background: #f5ffe4;\r\n    }\r\n    <\/style>\r\n\r\n    <script>\r\n    (function() {\r\n        var bokse = document.querySelectorAll('.ntf-pin-boks');\r\n        var skjult = document.getElementById('ntf_pin');\r\n        if (!bokse.length || !skjult) return;\r\n\r\n        bokse.forEach(function(boks, i) {\r\n            boks.addEventListener('input', function() {\r\n                this.value = this.value.replace(\/\\D\/g, '');\r\n                this.classList.toggle('udfyldt', this.value.length === 1);\r\n                if (this.value.length === 1 && i < bokse.length - 1) {\r\n                    bokse[i + 1].focus();\r\n                }\r\n                skjult.value = Array.from(bokse).map(function(b) { return b.value; }).join('');\r\n            });\r\n            boks.addEventListener('keydown', function(e) {\r\n                if (e.key === 'Backspace' && !this.value && i > 0) {\r\n                    bokse[i - 1].value = '';\r\n                    bokse[i - 1].classList.remove('udfyldt');\r\n                    bokse[i - 1].focus();\r\n                    skjult.value = Array.from(bokse).map(function(b) { return b.value; }).join('');\r\n                }\r\n            });\r\n            boks.addEventListener('paste', function(e) {\r\n                e.preventDefault();\r\n                var tekst = (e.clipboardData || window.clipboardData).getData('text').replace(\/\\D\/g, '');\r\n                tekst.split('').slice(0, 4).forEach(function(c, j) {\r\n                    if (bokse[j]) {\r\n                        bokse[j].value = c;\r\n                        bokse[j].classList.add('udfyldt');\r\n                    }\r\n                });\r\n                skjult.value = Array.from(bokse).map(function(b) { return b.value; }).join('');\r\n                var naeste = Math.min(tekst.length, bokse.length - 1);\r\n                bokse[naeste].focus();\r\n            });\r\n        });\r\n    })();\r\n    <\/script>\r\n    \n<\/div>\n<\/div><\/div><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"<p>Medlemsportal Velkommen tilbage Log ind med dit telefonnummer Indtast kun dit 8-cifrede mobilnummer. Mobilnummer +45 Udelad landekode. Mellemrum er ikke tilladt. Send kode<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-2744","page","type-page","status-publish"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>medlem-login - Nordsj\u00e6lland Turforening<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.turforeningen.dk\/index.php\/medlem-login\/\" \/>\n<meta property=\"og:locale\" content=\"da_DK\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"medlem-login - Nordsj\u00e6lland Turforening\" \/>\n<meta property=\"og:description\" content=\"Medlemsportal Velkommen tilbage Log ind med dit telefonnummer Indtast kun dit 8-cifrede mobilnummer. Mobilnummer +45 Udelad landekode. Mellemrum er ikke tilladt. Send kode\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.turforeningen.dk\/index.php\/medlem-login\/\" \/>\n<meta property=\"og:site_name\" content=\"Nordsj\u00e6lland Turforening\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/nordsjaellandturforening\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-07T07:41:05+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimeret l\u00e6setid\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minut\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.turforeningen.dk\\\/index.php\\\/medlem-login\\\/\",\"url\":\"https:\\\/\\\/www.turforeningen.dk\\\/index.php\\\/medlem-login\\\/\",\"name\":\"medlem-login - Nordsj\u00e6lland Turforening\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.turforeningen.dk\\\/#website\"},\"datePublished\":\"2026-05-06T15:39:20+00:00\",\"dateModified\":\"2026-05-07T07:41:05+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.turforeningen.dk\\\/index.php\\\/medlem-login\\\/#breadcrumb\"},\"inLanguage\":\"da-DK\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.turforeningen.dk\\\/index.php\\\/medlem-login\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.turforeningen.dk\\\/index.php\\\/medlem-login\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Hjem\",\"item\":\"https:\\\/\\\/www.turforeningen.dk\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"medlem-login\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.turforeningen.dk\\\/#website\",\"url\":\"https:\\\/\\\/www.turforeningen.dk\\\/\",\"name\":\"Nordsj\u00e6lland Turforening\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.turforeningen.dk\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.turforeningen.dk\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"da-DK\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.turforeningen.dk\\\/#organization\",\"name\":\"Nordsj\u00e6lland Turforening\",\"url\":\"https:\\\/\\\/www.turforeningen.dk\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"da-DK\",\"@id\":\"https:\\\/\\\/www.turforeningen.dk\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.turforeningen.dk\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/majlogo.png\",\"contentUrl\":\"https:\\\/\\\/www.turforeningen.dk\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/majlogo.png\",\"width\":1137,\"height\":203,\"caption\":\"Nordsj\u00e6lland Turforening\"},\"image\":{\"@id\":\"https:\\\/\\\/www.turforeningen.dk\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/nordsjaellandturforening\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"medlem-login - Nordsj\u00e6lland Turforening","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.turforeningen.dk\/index.php\/medlem-login\/","og_locale":"da_DK","og_type":"article","og_title":"medlem-login - Nordsj\u00e6lland Turforening","og_description":"Medlemsportal Velkommen tilbage Log ind med dit telefonnummer Indtast kun dit 8-cifrede mobilnummer. Mobilnummer +45 Udelad landekode. Mellemrum er ikke tilladt. Send kode","og_url":"https:\/\/www.turforeningen.dk\/index.php\/medlem-login\/","og_site_name":"Nordsj\u00e6lland Turforening","article_publisher":"https:\/\/www.facebook.com\/nordsjaellandturforening","article_modified_time":"2026-05-07T07:41:05+00:00","twitter_card":"summary_large_image","twitter_misc":{"Estimeret l\u00e6setid":"1 minut"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.turforeningen.dk\/index.php\/medlem-login\/","url":"https:\/\/www.turforeningen.dk\/index.php\/medlem-login\/","name":"medlem-login - Nordsj\u00e6lland Turforening","isPartOf":{"@id":"https:\/\/www.turforeningen.dk\/#website"},"datePublished":"2026-05-06T15:39:20+00:00","dateModified":"2026-05-07T07:41:05+00:00","breadcrumb":{"@id":"https:\/\/www.turforeningen.dk\/index.php\/medlem-login\/#breadcrumb"},"inLanguage":"da-DK","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.turforeningen.dk\/index.php\/medlem-login\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.turforeningen.dk\/index.php\/medlem-login\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Hjem","item":"https:\/\/www.turforeningen.dk\/"},{"@type":"ListItem","position":2,"name":"medlem-login"}]},{"@type":"WebSite","@id":"https:\/\/www.turforeningen.dk\/#website","url":"https:\/\/www.turforeningen.dk\/","name":"Nordsj\u00e6lland Turforening","description":"","publisher":{"@id":"https:\/\/www.turforeningen.dk\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.turforeningen.dk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"da-DK"},{"@type":"Organization","@id":"https:\/\/www.turforeningen.dk\/#organization","name":"Nordsj\u00e6lland Turforening","url":"https:\/\/www.turforeningen.dk\/","logo":{"@type":"ImageObject","inLanguage":"da-DK","@id":"https:\/\/www.turforeningen.dk\/#\/schema\/logo\/image\/","url":"https:\/\/www.turforeningen.dk\/wp-content\/uploads\/2026\/05\/majlogo.png","contentUrl":"https:\/\/www.turforeningen.dk\/wp-content\/uploads\/2026\/05\/majlogo.png","width":1137,"height":203,"caption":"Nordsj\u00e6lland Turforening"},"image":{"@id":"https:\/\/www.turforeningen.dk\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/nordsjaellandturforening"]}]}},"_links":{"self":[{"href":"https:\/\/www.turforeningen.dk\/index.php\/wp-json\/wp\/v2\/pages\/2744","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.turforeningen.dk\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.turforeningen.dk\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.turforeningen.dk\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.turforeningen.dk\/index.php\/wp-json\/wp\/v2\/comments?post=2744"}],"version-history":[{"count":0,"href":"https:\/\/www.turforeningen.dk\/index.php\/wp-json\/wp\/v2\/pages\/2744\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.turforeningen.dk\/index.php\/wp-json\/wp\/v2\/media?parent=2744"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}