-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
76 lines (65 loc) · 2.42 KB
/
contato.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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
$msg = 0;
$msg = $_REQUEST['msg'];
?>
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<title>SA IMOVEIS</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="node_modules/bootstrap/compiler/bootstrap.css">
<link rel="stylesheet" href="node_modules/bootstrap/compiler/style.css">
</head>
<body>
<!-- NAVBAR !-->
<nav class="navbar navbar-expand-lg navbar-light" id="navbar-logo">
<div class="container">
<a class="navbar-brand h1 mb-0" href="index.html">
<img src="imagens/logo-saimoveis.png" id="logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSite">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSite">
<ul class="navbar-nav">
<li clas="nav-item">
<a class="nav-link" href="quem.html">Quem Somos</a>
</li>
<li clas="nav-item">
<a class="nav-link" href="contato.html">Contato</a>
</li>
</ul>
</div>
</div>
<button class="anunciar">Anunciar imóvel</button>
</nav>
<br>
<?php if($msg==enviado): ?>
<h1>Mensagem Enviada. Agradecemos seu contato</h1>
<?php else: ?>
<fieldset>
<legend><h2>CONTATO</h2></legend>
<form action="formulario.php" method="post">
<label for="nome">Nome Completo</label>
<input type="text" name="nome" required><br>
<label for="email">E-mail</label>
<input type="text" name="email" required><br>
<label for="telefone">Telefone</label>
<input type="text" name="telefone" required><br>
<select name="contato">
<option value="alugar">Alugar</option>
<option value="anunciar">Anunciar</option>
<option value="comprar">Comprar</option>
<option value="outros">Outros</option>
</select><br><br>
<textarea name="comentario" style="width:400px; height:200px">
</textarea>
<br>
<input type="submit">
</form>
</fieldset>
</body>
</html>