|
<!DOCTYPE html><html lang="pt-BR"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Jornal Oliveira</title> |
|
<link href="https://fonts.googleapis.com/css2?family=Engravers+Old+English+BT&display=swap" rel="stylesheet"> |
|
<style> |
|
body { |
|
font-family: Arial, sans-serif; |
|
margin: 0; |
|
background-color: #ffffff; |
|
color: #000000; |
|
} |
|
header { |
|
background-color: #388e3c; |
|
padding: 20px; |
|
text-align: center; |
|
color: white; |
|
font-family: 'Engravers Old English BT', serif; |
|
font-size: 30px; |
|
} |
|
nav { |
|
display: flex; |
|
justify-content: center; |
|
background-color: #81c784; |
|
padding: 10px; |
|
} |
|
nav button { |
|
margin: 0 10px; |
|
padding: 10px; |
|
background-color: #66bb6a; |
|
border: none; |
|
cursor: pointer; |
|
color: white; |
|
font-weight: bold; |
|
} |
|
.section { |
|
display: none; |
|
padding: 20px; |
|
} |
|
.active { |
|
display: block; |
|
} |
|
label, input, textarea, select { |
|
display: block; |
|
margin-bottom: 10px; |
|
width: 100%; |
|
} |
|
input[type="text"], textarea, select { |
|
padding: 8px; |
|
} |
|
.hidden { |
|
display: none; |
|
} |
|
.category { |
|
margin: 5px 0; |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
<header>Jornal Oliveira</header> |
|
<nav> |
|
<button onclick="showSection('inicio')">Início</button> |
|
<button onclick="showSection('avaliar')">Avaliar</button> |
|
<button onclick="showSection('sugestoes')">Sugestões</button> |
|
<button onclick="showSection('participar')">Participe</button> |
|
<button onclick="showSection('login')">Login</button> |
|
</nav> <section id="inicio" class="section active"> |
|
<h2>Últimas matérias</h2> |
|
<div id="materias-lista">(Conteúdo dinâmico futuro)</div> |
|
</section> <section id="avaliar" class="section"> |
|
<h2>Avalie</h2> |
|
<label>Nota (1 a 5)</label> |
|
<select> |
|
<option>1</option> |
|
<option>2</option> |
|
<option>3</option> |
|
<option>4</option> |
|
<option>5</option> |
|
</select> |
|
<label>Comentário (obrigatório)</label> |
|
<textarea required></textarea> |
|
<button>Enviar Avaliação</button> |
|
</section> <section id="sugestoes" class="section"> |
|
<h2>Envie sua sugestão</h2> |
|
<textarea placeholder="Escreva ao menos 10 palavras" minlength="10" required></textarea> |
|
<button>Enviar Sugestão</button> |
|
</section> <section id="participar" class="section"> |
|
<h2>Participe</h2> |
|
<label>Nome completo:</label> |
|
<input type="text" required><label>Série:</label> |
|
<input type="text" required> |
|
|
|
<label>Período:</label> |
|
<select required> |
|
<option>Manhã</option> |
|
<option>Tarde</option> |
|
<option>Noite</option> |
|
</select> |
|
|
|
<label>RA:</label> |
|
<input type="text" placeholder="Começando com 000" pattern="000\d+" required> |
|
<details> |
|
<summary>Leia o termo de participação</summary> |
|
<p> |
|
TERMO DE CONDIÇÃO DE PARTICIPAÇÃO – JORNAL OLIVEIRA<br><br> |
|
Prezado(a) estudante,<br><br> |
|
Para fins de organização e reconhecimento dos participantes do Jornal Oliveira, solicitamos que os novos integrantes forneçam o seu RA (Registro do Aluno) no momento da inscrição. Essa informação será utilizada exclusivamente para identificação interna no âmbito do projeto.<br><br> |
|
O Jornal Oliveira compromete-se a utilizar o RA apenas para os fins aqui descritos, não realizando qualquer tipo de divulgação ou compartilhamento não autorizado. Contudo, ao fornecer essa informação, o participante declara estar ciente de que a organização não se responsabiliza por eventuais vazamentos ou acessos indevidos que ocorram por fatores externos ou alheios à sua vontade.<br><br> |
|
Ao assinalar a opção abaixo, o(a) participante declara estar de acordo com os termos apresentados e autoriza expressamente o uso do seu RA para os fins descritos. |
|
</p> |
|
</details> |
|
<label><input type="checkbox" required> Declaro que li e concordo com os termos acima para participar do Jornal Oliveira.</label> |
|
<button>Enviar Participação</button> |
|
|
|
</section> <section id="login" class="section"> |
|
<h2>Login</h2> |
|
<label>Digite o código/senha:</label> |
|
<input type="text" id="codigoInput"> |
|
<button onclick="verificaLogin()">Entrar</button> |
|
<div id="login-extra" class="hidden"> |
|
<button onclick="showSection('enviarMateria')">Enviar Matéria</button> |
|
<div id="editorExtras" class="hidden"> |
|
<button onclick="alert('Ver avaliações')">Ver Avaliações</button> |
|
<button onclick="alert('Ver sugestões')">Ver Sugestões</button> |
|
<button onclick="alert('Ver participações')">Ver Participações</button> |
|
</div> |
|
</div> |
|
</section> <section id="enviarMateria" class="section hidden"> |
|
<h2>Enviar Matéria</h2> |
|
<label>Título:</label> |
|
<input type="text" required> |
|
<label>Líde:</label> |
|
<textarea required></textarea> |
|
<label>Corpo do texto:</label> |
|
<textarea required></textarea> |
|
<label>Autor principal:</label> |
|
<input type="text" required> |
|
<label>Outros participantes:</label> |
|
<input type="text"> |
|
<label>Data:</label> |
|
<input type="date" required> |
|
<label>Categoria:</label> |
|
<select required> |
|
<option>Notícias da Escola</option> |
|
<option>Entrevistas</option> |
|
<option>Opinião</option> |
|
<option>Cultura e Arte</option> |
|
<option>Esportes</option> |
|
<option>Humor</option> |
|
<option>Você Sabia?</option> |
|
<option>Projetos e Grêmios</option> |
|
<option>Fala Estudante</option> |
|
<option>Investigação</option> |
|
</select> |
|
<button>Enviar Matéria</button> |
|
</section> <script> |
|
function showSection(id) { |
|
document.querySelectorAll('.section').forEach(sec => sec.classList.remove('active')); |
|
document.getElementById(id).classList.add('active'); |
|
} |
|
|
|
function verificaLogin() { |
|
const input = document.getElementById('codigoInput').value; |
|
const extras = document.getElementById('login-extra'); |
|
const editor = document.getElementById('editorExtras'); |
|
extras.classList.remove('hidden'); |
|
if (input === 'BRJORNALEDITOR') { |
|
editor.classList.remove('hidden'); |
|
} else { |
|
editor.classList.add('hidden'); |
|
} |
|
} |
|
</script><p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Rwhehhehe/teste-1-7" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |
|
|