17 lines
503 B
HTML
17 lines
503 B
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Message</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body class="bg-gray-100 flex items-center justify-center min-h-screen">
|
|
<div class="bg-white p-8 shadow-xl w-full max-w-md">
|
|
<h2 class="text-2xl font-semibold text-gray-900 text-center mb-6">Message</h2>
|
|
<p>{{ .msg }}</p>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|