-
Notifications
You must be signed in to change notification settings - Fork 1
/
contato.php
162 lines (153 loc) · 5.64 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<?php
require_once "conexaoMysql.php";
require_once "autenticacao.php";
require_once "scriptsAux/navbarHTML.php";
session_start();
$pdo = mysqlConnect();
$isLogged = checkLogged($pdo);
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset ="UTF-8">
<title> Contato</title>
<meta name="description" content="Adib Cecilio Prado Domingos e o autor">
<style>
header{
text-align: center;
background-color:rgb(7, 7, 7);
padding: 1pt;
color: chartreuse;
font-size: 20pt;
}
nav{
width: 100%;
text-align: center;
background-color: rgb(1, 27, 2);
padding: 1px;
color:white;
position: sticky;
top:0;
}
nav li{display: inline;}
a{color:rgb(29, 175, 107); font-size: 15pt; padding-right: 20pt;}
body{
font-family: "Helvetica Neue", Arial;
line-height: 2rem;
text-align: left;
padding: 1px;
background-color:rgb(123, 134, 123);
font-size: 13pt;
}
table{ margin-left: auto; margin-right: auto;}
h1,h2,h3{text-align: center;}
footer{text-align:center;}
main{
width: 900px;
text-align: center;border:1pt solid; padding: 1pt;border-color: white;
position: absolute;
left:50%;
transform: translate(-50%,0%);
border-radius: 15pt;
line-height: 20pt;}
fieldset{
width:15%;
margin:0 auto;
}
input:focus{
border: solid green;
box-shadow: 2px 2px 5px green;
outline: none;
}
textarea{width:90%;}
input:invalid + span::after {content: 'Algo esta errado'; color: red;}
input:valid + span::after {content: 'Correto'; color: rgb(13, 241, 25);}
</style>
</head>
<body>
<header><h1>Site do Adib</h1>
<?php echo navbar()?> <!-- Navbar completa -->
</header>
<main>
<h2>Formulario</h2>
<hr>
<form action="formulario.php" method="POST">
<div>
<h3>Dados pessoais</h3>
<label for="nome">Nome:</label> <input type="text" id="nome" name="nome" required><span></span><br>
<label for="email">E-mail:</label> <input type="email" id="email" name="email" required> <span></span><br>
<label for="idade">Idade:</label> <input type="number" id="idade" name="idade" required> <span></span><br>
<label for="telefone">Telefone:</label> <input type="tel" id="telefone" name="telefone" required> <span></span><br>
<label for="nasc">Data de nascimento:</label> <input type="date" id="nasc" name="nasc"><br>
<fieldset>
<legend>Sexo Biologico</legend>
<input type="radio" name="sexo" value="masculino">Masculino<br>
<input type="radio" name="sexo" value="feminino">Feminino<br>
<input type="radio" name="sexo" value="naoinformado" checked>Nao desejo Informar<br>
</fieldset>
<fieldset>
<legend>Estado Civil</legend>
<input type="radio" name="estcivil" value="solt" checked>Solteiro(a)<br>
<input type="radio" name="estcivil" value="cas">Casado(a)<br>
<input type="radio" name="estcivil" value="div">Divorciado(a)<br>
</fieldset>
</div>
<hr>
<div>
<h3>Dados da empresa</h3>
<label for="cnpj">CNPJ:</label> <input type="number" id="cnpj" name="cnpj"><br>
<label for="razsoc">Razão Social:</label> <input type="text" id="razsoc" name="razsoc"><br>
<label for="atuacao">Ramo de atuação:</label> <input type="text" id="atuacao" name="atuacao"><br>
</div>
<hr>
<div>
<h3>Endereço</h3>
<label for="cep">CEP:</label> <input type="number" id="cep" name="cep" required> <span></span><br>
<label for="tiplogradouro">Tipo de Logradouro:</label>
<select id="tiplogradouro" name="tiplogradouro">
<option value="rua">Rua</option>
<option value="avenida">Avenida</option>
<option value="praca">Praça</option>
<option value="etc">Etc</option>
</select>
<br>
<label for="logradouro">Logradouro:</label> <input type="text" id="logradouro" name="logradouro" required> <span></span><br>
<label for="cidade">Cidade:</label> <input type="text" id="cidade" name="cidade" required> <span></span><br>
<label for="estado">Estado:</label> <input type="text" id="estado" name="estado" required> <span></span><br>
</div>
<hr>
<div>
<h3>Descrição detalhada do interesse</h3>
Deixe seu comentario:<br>
<textarea name="comentario" rows="10" cols="220" maxlength="2000"></textarea>
</div>
<hr>
<div>
<h3>Outro</h3>
<fieldset>
<legend>Hobbies de interesses:</legend>
<input type="checkbox" name="hobby[]" value="musica">Musica<br>
<input type="checkbox" name="hobby[]" value="esporte">Esporte<br>
<input type="checkbox" name="hobby[]" value="esporte">Jogos<br>
<input type="checkbox" name="hobby[]" value="esporte">Livros<br>
</fieldset>
<fieldset>
<legend>Sabor preferido :</legend>
<input type="radio" name="sabpref" value="salg">Salgado<br>
<input type="radio" name="sabpref" value="doc" checked>Doce<br>
<input type="radio" name="sabpref" value="amargo">Amargo<br>
</fieldset>
</div>
<button>Enviar</button>
<input type="reset" value="Limpar">
</form>
</main>
<script type="module">
console.log("entrou no js")
import {navbarDin} from "./scriptsAux/navbarDinamica.js"
window.onload = () => {
console.log("entrou no onload")
navbarDin("<?php echo json_encode($isLogged); ?>","<?php echo $_SESSION['tipoDeUsuario']; ?>")
}
</script>
</body>