add contact form and mailing

Co-authored-by: Constantin Simonis <constantin@simonis.lol>
Reviewed-on: http://git.simonis.lol/sites/abiball/pulls/6
Reviewed-by: Constantin Simonis <constantin@simonis.lol>
Co-authored-by: Jan-Marlon Leibl <jleibl@proton.me>
Co-committed-by: Jan-Marlon Leibl <jleibl@proton.me>
This commit is contained in:
2025-01-23 17:44:47 +00:00
committed by Constantin Simonis
parent dc64bc0a22
commit eac7c863d1
23 changed files with 1876 additions and 7 deletions

View File

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Contact Details</title>
</head>
<body bgcolor="#f3f4f6" style="font-family: Arial, Helvetica, sans-serif;">
<table cellpadding="20" cellspacing="0" border="0" width="100%">
<tr>
<td align="center">
<table cellpadding="30" cellspacing="0" border="1" width="600" bgcolor="#ffffff" bordercolor="#e5e7eb" style="border-collapse: collapse;">
<tr>
<td>
<font color="#1f2937" size="5" face="Arial, Helvetica, sans-serif">Contact Details</font>
<table cellpadding="15" cellspacing="0" border="1" width="100%" bgcolor="#f9fafb" bordercolor="#e5e7eb" style="border-collapse: collapse; margin-top: 20px;">
<tr>
<td>
<font color="#6b7280" size="2" face="Arial, Helvetica, sans-serif">Email</font><br>
<font color="#1f2937" size="3" face="Arial, Helvetica, sans-serif">{{ data.email }}</font>
</td>
</tr>
</table>
<table cellpadding="15" cellspacing="0" border="1" width="100%" bgcolor="#f9fafb" bordercolor="#e5e7eb" style="border-collapse: collapse; margin-top: 20px;">
<tr>
<td>
<font color="#6b7280" size="2" face="Arial, Helvetica, sans-serif">Phone</font><br>
<font color="#1f2937" size="3" face="Arial, Helvetica, sans-serif">{{ data.phone }}</font>
</td>
</tr>
</table>
<table cellpadding="15" cellspacing="0" border="1" width="100%" bgcolor="#f9fafb" bordercolor="#e5e7eb" style="border-collapse: collapse; margin-top: 20px;">
<tr>
<td>
<font color="#6b7280" size="2" face="Arial, Helvetica, sans-serif">Message</font><br>
<font color="#1f2937" size="3" face="Arial, Helvetica, sans-serif">{{ data.message }}</font>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>