Compare commits
2 Commits
dff3be8333
...
1b11f8b6d6
Author | SHA1 | Date | |
---|---|---|---|
1b11f8b6d6 | |||
cef2128bc9 |
16
post.hbs
16
post.hbs
|
@ -130,8 +130,8 @@ into the {body} of the default.hbs template --}}
|
||||||
data-isso-feed="false"
|
data-isso-feed="false"
|
||||||
data-isso-max-comments-top="inf"
|
data-isso-max-comments-top="inf"
|
||||||
data-isso-max-comments-nested="inf"
|
data-isso-max-comments-nested="inf"
|
||||||
data-isso-gravatar="true"
|
data-isso-gravatar="false"
|
||||||
data-isso-avatar="false"
|
data-isso-avatar="true"
|
||||||
src="https://www.internet-czas-dzialac.pl/isso/js/embed.min.js" async></script>
|
src="https://www.internet-czas-dzialac.pl/isso/js/embed.min.js" async></script>
|
||||||
|
|
||||||
<section id="isso-thread"></section>
|
<section id="isso-thread"></section>
|
||||||
|
@ -148,13 +148,23 @@ into the {body} of the default.hbs template --}}
|
||||||
checkbox.id = comment_checkbox_id
|
checkbox.id = comment_checkbox_id
|
||||||
checkbox.required = true
|
checkbox.required = true
|
||||||
const label = document.createElement("label")
|
const label = document.createElement("label")
|
||||||
|
label.style.setProperty("line-height", 1);
|
||||||
|
label.style.setProperty("margin", "1em 0");
|
||||||
label.for = comment_checkbox_id;
|
label.for = comment_checkbox_id;
|
||||||
label.appendChild(checkbox)
|
label.appendChild(checkbox)
|
||||||
label.id = comment_checkbox_id + "__label"
|
label.id = comment_checkbox_id + "__label"
|
||||||
const label_text = document.createElement("span")
|
const label_text = document.createElement("span")
|
||||||
label_text.innerHTML = `akceptuję postanowienia <a href="#">regulaminu komentarzy</a>`
|
label_text.innerHTML = `Zapoznałam/em się z <a href="/regulamin-komentarzy">Regulaminem publikowania komentarzy</a> i akceptuję jego treść.`
|
||||||
label.appendChild(label_text)
|
label.appendChild(label_text)
|
||||||
document.querySelector("#isso-thread .auth-section").insertBefore(label, document.querySelector(".auth-section .post-action"))
|
document.querySelector("#isso-thread .auth-section").insertBefore(label, document.querySelector(".auth-section .post-action"))
|
||||||
|
const legal = document.createElement("p");
|
||||||
|
legal.classList.add("legal");
|
||||||
|
legal.textContent = `Współadministratorami danych osobowych są Arkadiusz wieczorek oraz Jan Orlik. Dane osobowe podane w formularzu są przetwarzane w celu realizacji usługi publikowania komentarzy na stronie internetowej współadministratorów, jak również w celu ustalenia, dochodzenia lub obrony roszczeń. Masz w szczególności prawo dostępu do swoich danych osobowych, ich usunięcia oraz wniesienia sprzeciwu wobec przetwarzania danych. Szczegóły dotyczące przetwarzania danych osobowych i przysługujących Ci praw znajdują się w Polityce prywatności.`
|
||||||
|
legal.style.setProperty("line-height", "0.98")
|
||||||
|
legal.style.setProperty("hyphens", "auto")
|
||||||
|
legal.style.setProperty("text-align", "justify")
|
||||||
|
legal.style.setProperty("font-style", "italic")
|
||||||
|
document.querySelector("#isso-thread .auth-section").insertBefore(legal, document.querySelector(".auth-section .post-action"))
|
||||||
faux_submit.addEventListener("click", ()=>{
|
faux_submit.addEventListener("click", ()=>{
|
||||||
if(!checkbox.checked){
|
if(!checkbox.checked){
|
||||||
checkbox.reportValidity()
|
checkbox.reportValidity()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user