15 lines
629 B
PHP
Executable File
15 lines
629 B
PHP
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Email</title>
|
|
</head>
|
|
<body>
|
|
<h1>Olá!</h1>
|
|
<p>Segue abaixo o link para acessar o formulário:</p>
|
|
<a href="{{ route('formulario') }}" target="_blank" style="background-color: #4CAF50; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; cursor: pointer;">Acessar Formulário</a>
|
|
<p>Se você não solicitou este e-mail, por favor, desconsidere.</p>
|
|
</body>
|
|
</html>
|