-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreclam.html
134 lines (116 loc) · 4.92 KB
/
reclam.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HeyGeek</title>
<link rel="stylesheet" href="contato.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<img id="logo" src="Img/LOGO01.svg" alt="#" title="#">
<div class="cadastro">
<a>
<button href="contato.html"><img src="Img/sw32.png" alt="#"></button>
<a href="contato.html"><p>CADASTRE-SE</p></a>
</a>
<a class="sair">
<a href="#" class="sair"><p>SAIR</p></a>
</a>
</div>
</header>
<nav class="menu">
<div id="menu-contraido">
<input type="checkbox">
<span></span>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="sobre.html">Sobre</a></li>
<li><a href="cont.html">Contatos</a></li>
<li><a href="reclam.html">Reclamações</a></li>
</ul>
</div>
</nav>
<div id="Principal">
<main>
<article class="contato">
<div id="main-container">
<h1>Reclame aqui!!!</h1>
<form id="register-form" action="">
<div class="full-box">
<label for="email">E-mail</label>
<input type="email" name="email" id="email" placeholder="Digite seu e-mail" data-min-length="2"
data-email-validate>
</div>
<div class="half-box spacing">
<label for="name">Nome Completo</label>
<input type="text" name="name" id="name" placeholder="Digite seu nome" data-required data-min-length="3"
data-max-length="16">
</div>
<div class="half-box spacing">
<label for="name">Motivo</label>
<input type="text" name="motivo" id="motivov" placeholder="Digite o motivo" data-required data-min-length="3"
data-max-length="16">
</div>
<div class="half-box ">
<label for="lastname">Reclamacao</label>
<input type="text" name="estado" id="estado" placeholder="Digite as Reclamações"data-required
data-only-letters>
</div>
</div>
<div class="full-box">
<input id="btn-submit" type="submit" value="Eviar">
<input id="btn-submit" type="submit" value="Voltar">
</div>
</form>
</div>
<p class="error-validation template"></p>
<script src="js/scripts.js"></script>
</article>
</main>
</div>
<footer id="texto">
<img src="Img/local.png" alt="localizacao" id="local">
<address>
Rua Vinewood Boulevard <br>
Avenida Hollywood Boulevard <br>
<a href="">0800 159 357 0</a><br>
</address>
<img id="logo-r" src="Img/LOGO01.svg" alt="#" title="#">
<nav id="Rede-Social">
<ul>
<li>
<a href="#">
<img src="Img/WhatsApp.png" alt="WhatsApp">
<span>(16)99001-3364</span>
</a>
</li>
<li>
<a href="#">
<img src="Img/Facebook.png" alt="Facebook">
<span>HeyGeek</span>
</a>
</li>
<li>
<a href="#">
<img src="Img/Instagram.png" alt="Instagram">
<span>HeyGeek</span>
</a>
</li>
<li>
<a href="#">
<img src="Img/Twitch.png" alt="Patrocinador">
<span>https://www.twitch.tv/leohraiz</span>
</a>
</li>
</ul>
</nav>
</footer>
</body>
</html>/