1
0
Fork 0

Explain the privacy policy of the contact form

This commit is contained in:
Mo 2023-06-01 15:01:08 +02:00
parent 32ed392db4
commit a68a013560
4 changed files with 15 additions and 4 deletions

View file

@ -2,8 +2,12 @@
title = "Datenschutzerklärung" title = "Datenschutzerklärung"
+++ +++
Die Website yinghong-massage.de sammelt keine persönlichen Daten. Die Website `yinghong-massage.de` sammelt keine persönlichen Daten.
IP-Addressen werden nicht geloggt. IP-Addressen werden nicht geloggt.
Die Website hinterlässt auch keine Cookies. Die Website hinterlässt auch keine Cookies.
## Kontaktformular
Nach dem Abschicken des Kontaktformulars unter [/termin](@/termin/index.md) wird der Inhalt des Formulars (Name, E-Mail-Addresse, Telefon-Nummer (optional) und Nachricht) direkt als E-Mail an die persönliche E-Mail-Addresse von Yinghong Yang {{ email() }} weitergeleitet und sonst nicht abgespeichert.

View file

@ -2,3 +2,7 @@
<a class="py-1.5 px-1 my-1.5 mx-3 w-full max-w-screen-md text-center text-white no-underline bg-green-700 rounded transition duration-500 hover:scale-105" <a class="py-1.5 px-1 my-1.5 mx-3 w-full max-w-screen-md text-center text-white no-underline bg-green-700 rounded transition duration-500 hover:scale-105"
href="{{ link | safe }}">{{ text }}</a> href="{{ link | safe }}">{{ text }}</a>
{% endmacro %} {% endmacro %}
{% macro email_link(email) %}
<a href="mailto:{{ email }}">{{ email }}</a>
{% endmacro %}

View file

@ -1,3 +1,5 @@
{% import "macros.html" as macros %}
<div class="flex justify-center py-3 text-center"> <div class="flex justify-center py-3 text-center">
<table> <table>
<tbody class="divide-y"> <tbody class="divide-y">
@ -15,9 +17,7 @@
</tr> </tr>
<tr> <tr>
<th class="p-1.5">E-Mail:</th> <th class="p-1.5">E-Mail:</th>
<td class="p-1.5"> <td class="p-1.5">{{ macros::email_link(email=config.extra.email) }}</td>
<a href="mailto:{{ config.extra.email }}">{{ config.extra.email }}</a>
</td>
</tr> </tr>
<tr> <tr>
<th class="p-1.5">Adresse:</th> <th class="p-1.5">Adresse:</th>

View file

@ -0,0 +1,3 @@
{% import "macros.html" as macros %}
{{ macros::email_link(email=config.extra.email) }}