-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmensagem-enviada.html
36 lines (30 loc) · 1.39 KB
/
mensagem-enviada.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html class="h-full bg-white" lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contato Enviado</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-50">
<div class="flex justify-center items-center min-h-screen bg-gray-100 py-8">
<div class="max-w-xl w-full bg-white p-6 rounded-lg shadow-lg text-center">
<h1 class="text-4xl font-bold text-gray-800 mb-4">Obrigado pelo Contato!</h1>
<p class="text-lg text-gray-600 mb-6">
Sua mensagem foi enviada com sucesso. <br> Obrigado!
</p>
<!-- Botão para voltar à página principal -->
<div class="flex justify-center space-x-4">
<a href="./index.html"
class="bg-purple-600 text-white px-6 py-2 rounded-md hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-600">
Página Inicial
</a>
<a href="./formulario-contato.html"
class="bg-gray-300 text-gray-700 px-6 py-2 rounded-md hover:bg-gray-400 focus:outline-none focus:ring-2 focus:ring-gray-300">
Enviar Outra Mensagem
</a>
</div>
</div>
</div>
</body>
</html>