-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4734295
Showing
7 changed files
with
474 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"liveServer.settings.port": 5501 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
body{ | ||
background-image: url(../_imagens/esporte.jpg); | ||
|
||
} | ||
|
||
section{ | ||
font-family: 'Times New Roman', Times, serif; | ||
max-width: 400px; | ||
margin: 150px auto; | ||
padding: 70px ; | ||
background-color: rgba(216, 216, 216, 0.7); | ||
border: solid 2px; | ||
border-radius: 1%; | ||
box-shadow: 0px 0px 10px black; | ||
} | ||
#sim, #nao{ | ||
display: inline-block; | ||
flex-wrap: wrap; | ||
color: white; | ||
width: 150px; | ||
height: 40px; | ||
margin: 10px; | ||
border: solid black 1px; | ||
border-radius: 6px; | ||
font-size: 16px; | ||
font-weight: bold; | ||
} | ||
#nao{ | ||
float: right; | ||
} | ||
input:hover{ | ||
opacity: 80%; | ||
} | ||
h1{ text-align: center; | ||
font-size: 30px; | ||
|
||
} | ||
|
||
#sim{ | ||
background-color: darkblue; | ||
} | ||
|
||
#nao{ | ||
background-color: rgb(148, 5, 5); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
body{ | ||
background-color: #E1E7EB; | ||
margin: 0px; | ||
padding: 0px; | ||
list-style: none; | ||
font-size: 1rem; | ||
font-family: Arial, Helvetica, sans-serif; | ||
max-width: 700px; | ||
margin: 0 auto; | ||
color: #272c4e; | ||
} | ||
.results pre { | ||
margin-top: 1rem; | ||
padding: 0.5rem 1rem; | ||
background: color-lightest; | ||
border: 1px solid var(--color-gray-light); | ||
overflow-x: scroll; | ||
} | ||
h1{ | ||
padding: 0; | ||
text-align: center; | ||
color: #444965; | ||
margin-top: 0; | ||
} | ||
|
||
div{ | ||
color: #444965; | ||
font-weight: bold; | ||
padding: 2px; | ||
} | ||
|
||
input{ | ||
border: solid 2px #444965; | ||
border-radius: 5px; | ||
} | ||
input:focus{ | ||
background-color: #e7e3f8; | ||
} | ||
|
||
.botao{ | ||
font-size: 1em; | ||
background: #444965; | ||
margin-bottom: 1em ; | ||
color: #ffffff; | ||
padding: 0.2em 0.6em; | ||
box-shadow: 2px 2px 2px rgba(0,0,0,0.2); | ||
text-shadow: 1px 1px 1px rgba(0,0,0,0.5); | ||
margin-right: 10px; | ||
margin-top: 10px; | ||
} | ||
|
||
.botao:hover{ | ||
background: #272c4e; | ||
} | ||
|
||
/* #datahoje, #tempo, #data { | ||
border: 0; | ||
background-color: #E1E7EB; | ||
color: #E1E7EB; | ||
} */ | ||
|
||
p{ | ||
display: inline-block; | ||
padding: 0; | ||
margin: 0; | ||
margin-right: 20px; | ||
} | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
function sim(){ | ||
window.location.href ="formulario.html"; | ||
} | ||
|
||
function nao(){ | ||
|
||
alert('Apenas clientes maiores de idade poderão participar das promoções.'); | ||
|
||
} | ||
|
||
function limpa_formulário_cep() { | ||
//Limpa valores do formulário de cep. | ||
document.getElementById('rua').value=(""); | ||
document.getElementById('bairro').value=(""); | ||
document.getElementById('cidade').value=(""); | ||
document.getElementById('uf').value=(""); | ||
document.getElementById('ibge').value=(""); | ||
} | ||
function meu_callback(conteudo) { | ||
if (!("erro" in conteudo)) { | ||
//Atualiza os campos com os valores. | ||
document.getElementById('rua').value=(conteudo.logradouro); | ||
document.getElementById('bairro').value=(conteudo.bairro); | ||
document.getElementById('cidade').value=(conteudo.localidade); | ||
document.getElementById('uf').value=(conteudo.uf); | ||
document.getElementById('ibge').value=(conteudo.ibge); | ||
} //end if. | ||
else { | ||
//CEP não Encontrado. | ||
limpa_formulário_cep(); | ||
alert("CEP não encontrado."); | ||
} | ||
} | ||
|
||
function pesquisacep(valor) { | ||
//Nova variável "cep" somente com dígitos. | ||
var cep = valor.replace(/\D/g, ''); | ||
//Verifica se campo cep possui valor informado. | ||
if (cep != "") { | ||
//Expressão regular para validar o CEP. | ||
var validacep = /^[0-9]{8}$/; | ||
//Valida o formato do CEP. | ||
if(validacep.test(cep)) { | ||
//Preenche os campos com "..." enquanto consulta webservice. | ||
document.getElementById('rua').value="..."; | ||
document.getElementById('bairro').value="..."; | ||
document.getElementById('cidade').value="..."; | ||
document.getElementById('uf').value="..."; | ||
document.getElementById('ibge').value="..."; | ||
//Cria um elemento javascript. | ||
var script = document.createElement('script'); | ||
//Sincroniza com o callback. | ||
script.src = 'https://viacep.com.br/ws/'+ cep + '/json/?callback=meu_callback'; | ||
//Insere script no documento e carrega o conteúdo. | ||
document.body.appendChild(script); | ||
} //end if. | ||
else { | ||
//cep é inválido. | ||
limpa_formulário_cep(); | ||
alert("Formato de CEP inválido."); | ||
} | ||
} //end if. | ||
else { | ||
//cep sem valor, limpa formulário. | ||
limpa_formulário_cep(); | ||
} | ||
}; | ||
|
||
|
||
|
||
|
||
|
||
|
||
function handleFormSubmit(event) { | ||
event.preventDefault(); | ||
|
||
const data = new FormData(event.target); | ||
|
||
const formJSON = Object.fromEntries(data.entries()); | ||
|
||
// para pegar multiplas seleções -> getAll | ||
formJSON.sport = data.getAll('sport'); | ||
|
||
// Só imprimi o json se tudo estiver validado | ||
if(validar_tudo() == true) | ||
{ | ||
|
||
const results = document.querySelector('.results pre'); | ||
results.innerText = JSON.stringify(formJSON, null, 2); | ||
console.log(formJSON); | ||
} | ||
} | ||
|
||
const form = document.querySelector('.contact-form'); | ||
form.addEventListener('submit', handleFormSubmit); | ||
|
||
|
||
//Validação com REGEX | ||
function validar_nome() { | ||
let value = document.getElementById("nome").value; | ||
let re = /^[a-zA-ZéúíóáÉÚÍÓÁèùìòàçÇÈÙÌÒÀõãñÕÃÑêûîôâÊÛÎÔÂëÿüïöäËYÜÏÖÄ\-\ \s]+$/; | ||
if (!re.test(value)) { | ||
// campo inválido, retorna false para o formulário não ser submetido | ||
alert('Somente caracteres alfabéticos em "Nome"'); | ||
document.cadastro.nome.focus(); | ||
return false; | ||
} | ||
return true; | ||
} | ||
|
||
//Validação com REGEX | ||
function validar_cpf() { | ||
let value = document.getElementById("cpf").value; | ||
let re = /^(([0-9]{3}.[0-9]{3}.[0-9]{3}-[0-9]{2})|([0-9]{11}))$/; | ||
if (!re.test(value)) { | ||
// campo inválido, retorna false para o formulário não ser submetido | ||
alert('Conteúdo de CPF Inválido'); | ||
document.cadastro.cpf.focus(); | ||
return false; | ||
} | ||
return true; | ||
} | ||
|
||
function confere_usuario() | ||
{ | ||
let usuario_json = '{"usuario1": "nicknick"}'; | ||
let v_usuario = JSON.parse(usuario_json); | ||
if(v_usuario.usuario1 == document.cadastro.login.value) | ||
return true; | ||
else | ||
{ | ||
alert("Usuario não confere com JSON!"); | ||
/* document.cadastro.usuario.focus(); */ | ||
return false; | ||
} | ||
} | ||
function confere_senha() | ||
{ | ||
let senha_json = '{"senha1": "nick@123"}'; | ||
let v_senha = JSON.parse(senha_json); | ||
if(v_senha.senha1 == document.cadastro.senha.value) | ||
return true; | ||
else | ||
{ | ||
alert("Senha não confere com JSON!"); | ||
/* document.cadastro.senha.focus(); */ | ||
return false; | ||
} | ||
} | ||
//valida todos os campos | ||
function validar_tudo() { | ||
// se um deles for inválido, retorna false e o form não é submetido | ||
return validar_nome() && validar_cpf() | ||
&& confere_usuario() && confere_senha(); | ||
|
||
} | ||
|
||
var d = new Date(); | ||
document.getElementById("datahoje").value = d; | ||
|
||
|
||
|
||
setInterval(contartempo, 1000); | ||
|
||
|
||
var contador=1; | ||
function contartempo(){ | ||
document.getElementById("tempo").innerHTML = contador; | ||
contador++; | ||
|
||
// quando o contador chegar ao valor, a página recarrega | ||
if(contador == 100) | ||
{ | ||
window.location.reload(false); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt-br"> | ||
<head> | ||
<title>UC9 Autoriza</title> | ||
|
||
<meta charset="UTF-8"> | ||
|
||
<link rel="stylesheet" href="_css/autoriza.css"> | ||
|
||
<script src="_javascript/script.js"></script> | ||
|
||
</head> | ||
|
||
<body> | ||
<section> | ||
<h1>Você é maior de 18 anos?</h1> | ||
|
||
<div class="question"> | ||
<input id="sim" onclick="sim()" class="button" type="button" value="Sim"> | ||
<input id="nao" onclick="nao()" class="button" type="button" value="Não"> | ||
</div> | ||
</section> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.