-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvarejista.php
62 lines (56 loc) · 2.62 KB
/
varejista.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
<?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/varejista.css">
<script src="/js/varejista.js"></script>
</head>
<body>
<?php require(__DIR__."/components/navigator.html"); ?>
<?php require(__DIR__."/components/page_header.html"); ?>
<!--Posts e divulgação de ebook-->
<div class="container">
<div class="col-md-9">
<h1>ÁREA DO VAREJISTA</h1>
<h2>assista este vídeo e descubra as vantagens de fazer parte da nossa agenda-varejista</h2>
<iframe width="766" height="444" src="https://www.youtube.com/embed/PpmaXDju_7U" frameborder="0" allowfullscreen=""></iframe>
<h2>Assine nossa newsletter e receba informações essenciais para ficar por dentro do mundo do varejo! É gratuito!</h2>
<div class="successSignUp" style="display: none;">
<h3>Cadastro realizado com sucesso!</h3>
</div>
<form class="varejistaForm" style="display: inline;">
<div>
<input type="text" name="name" id="name" placeholder="nome"/>
<input type="text" name="lastName" id="lastName" placeholder="sobrenome"/>
</div>
<div>
<input type="text" name="company" id="company" placeholder="empresa">
</div>
<div class="varejistaFormRadioButton" value="">
<input type="radio" name="tipoComercio" id="varejo" value="VAREJO">
<label for="varejo">varejo</label>
<input type="radio" name="tipoComercio" id="industria" value="INDUSTRIA">
<label for="industria">indústria</label>
<input type="radio" name="tipoComercio" id="outro" value="OUTRO">
<label for="outro">outro</label>
</div>
<div>
<input type="email" name="email" value="" id="email" placeholder="email-profissional">
</div>
<input type="submit" class="btn btn-default varejistaSend" value="Enviar!">
</form>
</div>
<div class="col-md-2">
<div class="row">
<img src="/images/banner.jpg">
</div>
</div>
</div>
</body>
</html>