53 lines
1.6 KiB
PHP
Executable File
53 lines
1.6 KiB
PHP
Executable File
<!doctype html>
|
|
<html lang="pt-br">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="css/font-face/stylesheet.css">
|
|
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="css/estilo.css" rel="stylesheet">
|
|
|
|
<title>Verificação do Envio</title>
|
|
</head>
|
|
|
|
<body>
|
|
<main class="container">
|
|
<a name="home"></a>
|
|
<nav class="navbar navbar-fixed-top navbar-inverse navbar-transparente">
|
|
<?php include ('menu.php')?>
|
|
</nav>
|
|
<header>
|
|
</header>
|
|
<section class="main container" style="margin-top:80px">
|
|
<div class="jumbotron">
|
|
<h1 class="text-center">Em breve você vai receber um e-mail com mais informações!</h1>
|
|
|
|
<?php
|
|
$destino="contatowinfirst@gmail.com";
|
|
$msg=$_POST['evento'];
|
|
$nome_contato=$_POST['nome_contato'];
|
|
$email_contato=$_POST['email_contato'];
|
|
$mailsend=mail("$destino","Formulário de comentários","Declaro minha participação no evento $msg","From:$email_contato");
|
|
|
|
echo "<p>Obrigado pelo pedido de participação, $nome_contato !</p>";
|
|
|
|
?>
|
|
|
|
<h5 class="alert-danger"><h5>
|
|
<script type="text/javascript">
|
|
function Voltar(){
|
|
history.go(-1);
|
|
}
|
|
setTimeout('Voltar()',10000);
|
|
</script>
|
|
<h5>Se você não for redirecionado automaticamente em 10 segundos, <a href="javascript: history.go(-1)">Clique aqui!</a></h5>
|
|
</div>
|
|
</section>
|
|
<!-- Jquery (obrigatório para plugin JS do Bootstrap) -->
|
|
<script src="bootstrap/jquery.min.js"></script>
|
|
|
|
<!-- Plugin JS-->
|
|
<script src="bootstrap/js/bootstrap.min.js"></script>
|
|
</body>
|
|
</html>
|