Files
gremiumhub/legalconsenthub-backend/src/main/resources/templates/email/form_created.html

36 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<style>
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
.header { background-color: #4F46E5; color: white; padding: 20px; border-radius: 5px 5px 0 0; }
.content { background-color: #f9fafb; padding: 20px; }
.button { display: inline-block; padding: 10px 20px; background-color: #4F46E5; color: white; text-decoration: none; border-radius: 5px; margin-top: 15px; }
.footer { color: #6b7280; font-size: 12px; margin-top: 20px; }
</style>
</head>
<body>
<div class="container">
<div class="header">
<h2>Neuer Mitbestimmungsantrag erstellt</h2>
</div>
<div class="content">
<p>Hallo,</p>
<p>Ein neuer Mitbestimmungsantrag wurde erstellt:</p>
<ul>
<li><strong>Antrag:</strong> <span th:text="${formName}"></span></li>
<li><strong>Erstellt von:</strong> <span th:text="${creatorName}"></span></li>
</ul>
<p>Klicken Sie auf den folgenden Link, um den Antrag anzusehen:</p>
<a th:href="@{http://localhost:3001/application-forms/{id}/0(id=${applicationFormId})}" class="button">Antrag ansehen</a>
</div>
<div class="footer">
<p>Diese E-Mail wurde automatisch von Legal Consent Hub gesendet.</p>
</div>
</div>
</body>
</html>