-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
48 lines (37 loc) · 1.44 KB
/
index.php
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
37
38
39
40
41
42
43
44
45
46
47
48
<html>
<head>
<meta charset="utf-8" />
<title>Email Free</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="py-3 text-center">
<img class="d-block mx-auto mb-2" src="logo.png" alt="" width="72" height="72">
<h2>Envio deEmail Free</h2>
<p class="lead">Seu app de envio de e-mails particular!</p>
</div>
<div class="row">
<div class="col-md-12">
<div class="card-body font-weight-bold">
<form action="processa_envio_email.php" method="post">
<div class="form-group">
<label for="para">Para</label>
<input type="text" class="form-control" name="para" id="para" placeholder="email@dominio.com.br">
</div>
<div class="form-group">
<label for="assunto">Assunto</label>
<input type="text" class="form-control" name="assunto" id="assunto" placeholder="Assundo do e-mail">
</div>
<div class="form-group">
<label for="mensagem">Mensagem</label>
<textarea class="form-control" name="mensagem" id="mensagem"></textarea>
</div>
<button type="submit" class="btn btn-primary btn-lg">Enviar Mensagem</button>
</form>
</div>
</div>
</div>
</div>
</body>
</html>