-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·60 lines (56 loc) · 2.91 KB
/
index.html
File metadata and controls
executable file
·60 lines (56 loc) · 2.91 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel='stylesheet' href='https://use.fontawesome.com/releases/v5.4.1/css/all.css' integrity='sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz' crossorigin='anonymous'>
<link href="fonts/fonts.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>comuREDE</title>
</head>
<body>
<header class="header">
<img class="header__logo" src="images/logo-comuREDE_02.png" alt="Logo comuREDE">
</header>
<main class="container">
<h2 class="container__title">Atenção</h2>
<p class="container__textTerms">
Ao acessar a internet por esse link, através de uma rede livre e aberta, suas informações NÃO SERÃO CRIPITOGRAFADAS e podem ser interceptadas por usuários maliciosos. Logo, ao avançar na navegação, estará expressamente declarando que está ciente de tal
risco e também poderá ser responsablizado pelas autoridades locais, caso perceba com qualquer conduta ilícita ou ilegual.
</p>
<label for="acept" class="container__labelTerms">
<input type="checkbox" name="acept" class="container__checkboxTerms">
Li e concordo com os termos acima.
</label>
<div class="container__boxButtons">
<!-- <button class="boxButtons__btn btn__default">Acessar serviço</button> -->
<a href="services.html" class="boxButtons__btn btn__default">Acessar serviço</a>
<button class="boxButtons__btn btn__default">Navegar na Internet</button>
</div>
<form class="container__formRegister" method="POST" action="form.php">
<input type="hidden" name="cep" value="24130400">
<h2 class="formRegister__title">Cadastre-se e receba notificações e relatórios automaticamente</h2>
<label class="formRegister__item" for="name">
Nome
<input class="formRegister__itemInput" type="text" name="name">
</label>
<label class="formRegister__item" for="email">
email
<input class="formRegister__itemInput" type="email" name="email">
</label>
<label class="formRegister__item" for="phone">
celular
<input class="formRegister__itemInput" type="text" name="phone">
</label>
<button class="formRegister__itemButton btn__default">Enviar</button>
</form>
</main>
<footer class="footer">
<h2 class="footer__title">Ajude a propagar essa ideia ;)</h2>
<i class="footer__iconsSocial fab fa-facebook-f"></i>
<i class="footer__iconsSocial fab fa-instagram"></i>
<i class="footer__iconsSocial fab fa-twitter"></i>
</footer>
</body>
</html>