forked from matheuscostadesign/phpmailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (23 loc) · 929 Bytes
/
index.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
<!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.0">
<title>Formulário de exemplo</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form action="enviar.php" method="post" enctype="multipart/form-data">
<h1>Exemplo Formulário</h1>
<p>Enviar formulário por e-mail com a biblioteca PHPMailer</p><br>
<input type="text" name="nome" placeholder="Nome">
<input type="text" name="telefone" placeholder="Telefone">
<input type="email" name="email" placeholder="E-mail">
<label for="arquivo">Anexe um arquivo</label>
<input type="file" name="arquivo">
<textarea name="mensagem" cols="45" rows="5" placeholder="Digite a mensagem..."></textarea>
<button type="submit" class="button">Enviar mensagem</button>
</form>
</body>
</html>