New contact form with friendlycaptcha

This commit is contained in:
Jorit Tijsen
2026-02-24 14:04:04 +01:00
parent 6786ac7ce1
commit 3b4030113b
80 changed files with 2860 additions and 1918 deletions

View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>Contactformulier Bericht</title>
</head>
<body>
<h1>Nieuw bericht van {{ $data['name'] }}</h1>
<p><strong>Email:</strong> {{ $data['email'] }}</p>
<p><strong>Bericht:</strong></p>
<p>{!! nl2br(e($data['message'])) !!}</p>
@if(isset($data['video_link']))
<p><strong>Video Link:</strong> <a href="{{ $data['video_link'] }}">{{ $data['video_link'] }}</a></p>
@endif
</body>
</html>