File size: 55,581 Bytes
782512b |
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 |
<!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> |