-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.php
53 lines (52 loc) · 2.09 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
<?php require(__DIR__."/components/constants.php"); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title><?=WEBSITE_TITLE?>Varejista</title>
<?php require(__DIR__."/components/import.html") ?>
<link rel="stylesheet" type="text/css" href="/css/contato.css">
<script src="/js/contato.js"></script>
</head>
<body>
<?php require(__DIR__."/components/navigator.html"); ?>
<?php require(__DIR__."/components/page_header.html"); ?>
<div class="container">
<div class="col-md-9" >
<div class="successMessage" style="display: none;">
<h1>Mensagem recebida com sucesso. Obrigado!</h1>
</div>
<span class="contactFormDiv">
<h1>CONTATO</h1>
<h4>Entre em contato conosco caso haja alguma dúvida!</h4>
<div class="col-md-8">
<form class="contactForm">
<div>
<input type="text" name="name" id="contact_page_name" placeholder="nome"/>
<input type="text" name="lastName" id="contact_page_lastName" placeholder="sobrenome"/>
</div>
<div>
<input type="text" name="company" id="contact_page_company" placeholder="empresa">
</div>
<div>
<input type="email" name="email" id="contact_page_email" placeholder="email profissional">
</div>
<div>
<textarea name="message" id="contact_page_message" placeholder="mensagem"></textarea>
</div>
<input type="submit" class="btn btn-default submitButton" value="Enviar!">
</form>
</div>
</span>
</div>
<div class="col-md-2">
<div class="row">
<img src="/images/banner.jpg">
</div>
</div>
</div>
</body>
</html>