68 lines
2.1 KiB
HTML
68 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Willkommen beim Dörpsmobil Hasloh e.V.</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 20px;
|
|
background-color: #f9f9f9;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
background-color: #fff;
|
|
border: 1px solid #ddd;
|
|
border-radius: 8px;
|
|
}
|
|
h1 {
|
|
color: #007b5e;
|
|
}
|
|
p {
|
|
margin-bottom: 1em;
|
|
}
|
|
.contact-info {
|
|
margin-top: 20px;
|
|
}
|
|
.contact-info strong {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
a {
|
|
color: #007b5e;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Willkommen beim Dörpsmobil Hasloh e.V.</h1>
|
|
<p>Hallo {{.FirstName}},</p>
|
|
<p>herzlich willkommen beim Dörpsmobil Hasloh e.V.! Vielen Dank für Ihre Registrierung und Ihre Unterstützung unseres Projekts.</p>
|
|
<p>Wir freuen uns, Sie als Mitglied begrüßen zu dürfen und wünschen Ihnen stets eine sichere und angenehme Fahrt mit unseren Fahrzeugen.</p>
|
|
<p>Für weitere Fragen stehen wir Ihnen gerne zur Verfügung:</p>
|
|
<div class="contact-info">
|
|
<strong>Kontakt:</strong>
|
|
Name: Anke Freitag<br>
|
|
Vorsitzende Doerpsmobil-Hasloh e.V.<br>
|
|
E-Mail: <a href="mailto:info@doerpsmobil-hasloh.de">info@doerpsmobil-hasloh.de</a><br>
|
|
Telefon: +49 174 870 1392
|
|
</div>
|
|
<p>Besuchen Sie auch unsere Webseite unter <a href="https://carsharing-hasloh.de">https://carsharing-hasloh.de</a> für weitere Informationen.</p>
|
|
<p>Mit freundlichen Grüßen,<br>
|
|
Ihr Team von Dörpsmobil Hasloh e.V.
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|