Update templates/index.html
Browse files- templates/index.html +11 -13
templates/index.html
CHANGED
|
@@ -2,24 +2,22 @@
|
|
| 2 |
<html lang="pt-br">
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
-
<title>Contato</title>
|
| 6 |
<link rel="stylesheet" href="/static/style.css">
|
| 7 |
</head>
|
| 8 |
<body>
|
| 9 |
-
<
|
| 10 |
-
|
| 11 |
-
<
|
| 12 |
-
|
| 13 |
-
<input type="text" id="nome" name="nome" required>
|
| 14 |
|
| 15 |
-
|
| 16 |
-
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
</div>
|
| 24 |
</body>
|
| 25 |
</html>
|
|
|
|
| 2 |
<html lang="pt-br">
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
+
<title>Formulário de Contato</title>
|
| 6 |
<link rel="stylesheet" href="/static/style.css">
|
| 7 |
</head>
|
| 8 |
<body>
|
| 9 |
+
<h1>Fale conosco</h1>
|
| 10 |
+
<form method="POST" action="/enviar">
|
| 11 |
+
<label>Nome:</label><br>
|
| 12 |
+
<input name="nome" required><br><br>
|
|
|
|
| 13 |
|
| 14 |
+
<label>Email:</label><br>
|
| 15 |
+
<input name="email" type="email" required><br><br>
|
| 16 |
|
| 17 |
+
<label>Mensagem:</label><br>
|
| 18 |
+
<textarea name="mensagem" required></textarea><br><br>
|
| 19 |
|
| 20 |
+
<button type="submit">Enviar</button>
|
| 21 |
+
</form>
|
|
|
|
| 22 |
</body>
|
| 23 |
</html>
|