-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.php
63 lines (61 loc) · 2.65 KB
/
contato.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mama Lucas | Sobre</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<?php include 'header.php'; ?>
<main>
<section id="contato">
<h1>Peça pelo nosso WhatsApp</h1>
<form id="contact-form">
<div style="display: flex; flex-wrap: wrap;">
<div style="flex: 1; margin-right: 20px;">
<label for="nome">Nome do Cliente:</label>
<input type="text" id="nome" name="nome" required>
</div>
<div style="flex: 1;">
<label for="cep">CEP:</label>
<input type="text" id="cep" name="cep" required>
</div>
</div>
<div style="display: flex; flex-wrap: wrap;">
<div style="flex: 1; margin-right: 20px;">
<label for="nome">Logradouro:</label>
<input type="text" id="logradouro" name="logradouro" required>
</div>
<div style="flex: 1;">
<label for="cep">Cidade:</label>
<input type="text" id="cidade" name="cidade" required>
</div>
</div>
<div style="display: flex; flex-wrap: wrap;">
<div style="flex: 1; margin-right: 20px;">
<label for="nome">Número:</label>
<input type="text" id="numero" name="numero" required>
</div>
<div style="flex: 1;">
<label for="cep">Bairro:</label>
<input type="text" id="bairro" name="bairro" required>
</div>
</div>
<div style="flex: 1;">
<label for="cep">Complemento/Referência:</label>
<textarea id="complemento" name="complemento"></textarea>
</div>
<div style="flex: 1;">
<label for="cep">Mensagem:</label>
<textarea id="mensagem" name="mensagem" rows="4" required></textarea>
</div>
<button type="submit">Enviar</button>
</form>
</section>
</main>
<?php include 'footer.php'; ?>
<script src="app.js"></script>
</body>
</html>