| <!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> |
| <style> |
| body { |
| font-family: Arial, sans-serif; |
| background-color: #ffffff; |
| color: #000000; |
| margin: 0; |
| padding: 0; |
| } |
| header { |
| background-color: #388e3c; |
| color: white; |
| padding: 20px; |
| text-align: center; |
| font-family: 'Georgia', serif; |
| font-size: 32px; |
| } |
| nav { |
| background-color: #94ff0f; |
| display: flex; |
| justify-content: space-around; |
| padding: 10px; |
| } |
| nav button { |
| background-color: #94ff0f; |
| color: white; |
| border: none; |
| font-weight: bold; |
| cursor: pointer; |
| } |
| section { |
| padding: 20px; |
| } |
| .matéria { |
| border-bottom: 1px solid #ccc; |
| padding: 10px 0; |
| } |
| .leia-mais { |
| color: blue; |
| cursor: pointer; |
| } |
| .hidden { |
| display: none; |
| } |
| .input-group { |
| margin-bottom: 10px; |
| } |
| .input-group label { |
| display: block; |
| margin-bottom: 5px; |
| } |
| .input-group input, .input-group textarea, .input-group select { |
| width: 100%; |
| padding: 8px; |
| } |
| .btn-submit { |
| background-color: #388e3c; |
| color: white; |
| padding: 10px; |
| border: none; |
| cursor: pointer; |
| } |
| </style> |
| </head> |
| <body> |
| <header>Jornal Oliveira</header> <nav> |
| <button onclick="mostrarSecao('inicio')">Início</button> |
| <button onclick="mostrarSecao('avaliar')">Avaliar</button> |
| <button onclick="mostrarSecao('sugestoes')">Sugestões</button> |
| <button onclick="mostrarSecao('participe')">Participe</button> |
| <button onclick="mostrarSecao('login')">Login</button> |
| </nav> <section id="inicio"> |
| <h2>Últimas matérias</h2> |
| <div class="matéria"> |
| <h3>Título da Matéria</h3> |
| <p>Resumo da matéria... <span class="leia-mais" onclick="alert('Exibir matéria completa em outra tela')">Leia mais</span></p> |
| </div> |
| </section> <section id="avaliar" class="hidden"> |
| <h2>Avalie o jornal</h2> |
| <div class="input-group"> |
| <label>Nota (1 a 5):</label> |
| <input type="number" min="1" max="5" required> |
| </div> |
| <div class="input-group"> |
| <label>Comentário:</label> |
| <textarea required></textarea> |
| </div> |
| <button class="btn-submit">Enviar</button> |
| </section> <section id="sugestoes" class="hidden"> |
| <h2>Sugestões</h2> |
| <div class="input-group"> |
| <label>Sua sugestão:</label> |
| <textarea required></textarea> |
| </div> |
| <button class="btn-submit">Enviar</button> |
| </section> <section id="participe" class="hidden"> |
| <h2>Participe</h2> |
| <div class="input-group"> |
| <label>Nome completo:</label> |
| <input type="text" required> |
| </div> |
| <div class="input-group"> |
| <label>Série:</label> |
| <input type="text" required> |
| </div> |
| <div class="input-group"> |
| <label>Período:</label> |
| <select required> |
| <option>Manhã</option> |
| <option>Tarde</option> |
| <option>Noite</option> |
| </select> |
| </div> |
| <div class="input-group"> |
| <label>RA (começando com 000):</label> |
| <input type="text" pattern="000[0-9]+" required> |
| </div> |
| <button class="btn-submit">Enviar</button> |
| <p style="font-size: small; color: gray;">Não nos responsabilizamos por vazamento de dados.</p> |
| </section> <section id="login" class="hidden"> |
| <h2>Login</h2> |
| <div class="input-group"> |
| <label>Código de acesso:</label> |
| <input type="password" id="codigoAcesso" required> |
| </div> |
| <button class="btn-submit" onclick="verificarCodigo()">Entrar</button> |
| </section> <script> |
| function mostrarSecao(secao) { |
| const secoes = document.querySelectorAll('section'); |
| secoes.forEach(s => s.classList.add('hidden')); |
| document.getElementById(secao).classList.remove('hidden'); |
| } |
| |
| function verificarCodigo() { |
| const codigo = document.getElementById('codigoAcesso').value; |
| if (codigo === 'BRJORNAL') { |
| alert('Login como colaborador. Agora você pode enviar matérias.'); |
| } else if (codigo === 'BRJORNALEDITOR') { |
| alert('Login como editor. Agora você pode aprovar/gerenciar matérias.'); |
| } else { |
| alert('Código inválido.'); |
| } |
| } |
| </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-5" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |