Skip to content

Commit

Permalink
Change links in impressum
Browse files Browse the repository at this point in the history
  • Loading branch information
MaikRe authored Nov 19, 2024
1 parent 73a71e0 commit 56ffe09
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions frontend/mopad.js
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ class Login {
const imprintElement = footerElement.appendChild(
document.createElement("a")
);
imprintElement.href = "https://rohow.de/2023/de/imprint.html";
imprintElement.href = "https://rohow.de/2024/de/imprint.html";
imprintElement.target = "_blank";
imprintElement.rel = "noreferrer";
imprintElement.innerText = "Imprint/Impressum";
Expand All @@ -344,7 +344,7 @@ class Login {
const privacyPolicyElement = footerElement.appendChild(
document.createElement("a")
);
privacyPolicyElement.href = "https://rohow.de/2023/de/privacy_policy.html";
privacyPolicyElement.href = "https://rohow.de/2024/de/privacy_policy.html";
privacyPolicyElement.target = "_blank";
privacyPolicyElement.rel = "noreferrer";
privacyPolicyElement.innerText = "Privacy Policy/Datenschutzerklärung";
Expand Down Expand Up @@ -532,7 +532,7 @@ class Register {
const imprintElement = footerElement.appendChild(
document.createElement("a")
);
imprintElement.href = "https://rohow.de/2020/de/imprint.html";
imprintElement.href = "https://rohow.de/2024/de/imprint.html";
imprintElement.target = "_blank";
imprintElement.rel = "noreferrer";
imprintElement.innerText = "Imprint/Impressum";
Expand All @@ -542,7 +542,7 @@ class Register {
const privacyPolicyElement = footerElement.appendChild(
document.createElement("a")
);
privacyPolicyElement.href = "https://rohow.de/2020/de/privacy_policy.html";
privacyPolicyElement.href = "https://rohow.de/2024/de/privacy_policy.html";
privacyPolicyElement.target = "_blank";
privacyPolicyElement.rel = "noreferrer";
privacyPolicyElement.innerText = "Privacy Policy/Datenschutzerklärung";
Expand Down Expand Up @@ -812,7 +812,7 @@ class Talks {
const imprintElement = this.footerElement.appendChild(
document.createElement("a")
);
imprintElement.href = "https://rohow.de/2020/de/imprint.html";
imprintElement.href = "https://rohow.de/2024/de/imprint.html";
imprintElement.target = "_blank";
imprintElement.rel = "noreferrer";
imprintElement.innerText = "Imprint/Impressum";
Expand All @@ -822,7 +822,7 @@ class Talks {
const privacyPolicyElement = this.footerElement.appendChild(
document.createElement("a")
);
privacyPolicyElement.href = "https://rohow.de/2020/de/privacy_policy.html";
privacyPolicyElement.href = "https://rohow.de/2024/de/privacy_policy.html";
privacyPolicyElement.target = "_blank";
privacyPolicyElement.rel = "noreferrer";
privacyPolicyElement.innerText = "Privacy Policy/Datenschutzerklärung";
Expand Down

0 comments on commit 56ffe09

Please sign in to comment.