Create form.html
Browse files- templates/form.html +28 -0
templates/form.html
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<meta charset="utf-8">
|
5 |
+
<title>Receba sua oferta imobili谩ria</title>
|
6 |
+
</head>
|
7 |
+
<body>
|
8 |
+
<h2>Encontre o im贸vel ideal para voc锚</h2>
|
9 |
+
<form method="POST">
|
10 |
+
<label>Nome:</label><br>
|
11 |
+
<input type="text" name="nome" required><br><br>
|
12 |
+
|
13 |
+
<label>Email:</label><br>
|
14 |
+
<input type="email" name="email" required><br><br>
|
15 |
+
|
16 |
+
<label>Bairro de interesse:</label><br>
|
17 |
+
<input type="text" name="bairro" required><br><br>
|
18 |
+
|
19 |
+
<label>Faixa de pre莽o:</label><br>
|
20 |
+
<input type="text" name="preco" required><br><br>
|
21 |
+
|
22 |
+
<label>O que voc锚 procura?</label><br>
|
23 |
+
<textarea name="mensagem" rows="4" required></textarea><br><br>
|
24 |
+
|
25 |
+
<button type="submit">Receber oferta</button>
|
26 |
+
</form>
|
27 |
+
</body>
|
28 |
+
</html>
|