File size: 95,327 Bytes
5cf335d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<!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=Roboto&display=swap" rel="stylesheet">
            <style>
                body {
                      margin: 0;
                            font-family: 'Roboto', sans-serif;
                                  background-color: #fff;
                                        color: #000;
                                            }header {
                                              background-color: #1b5e20;
                                                color: white;
                                                  padding: 20px;
                                                    text-align: center;
                                                      font-family: 'Engravers Old English BT', serif;
                                                        font-size: 28px;
                                                        }

                                                        nav {
                                                          display: flex;
                                                            justify-content: center;
                                                              background-color: #66bb6a;
                                                                padding: 10px;
                                                                  gap: 10px;
                                                                    flex-wrap: wrap;
                                                                    }

                                                                    nav button {
                                                                      background-color: #66bb6a;
                                                                        border: none;
                                                                          padding: 10px 20px;
                                                                            cursor: pointer;
                                                                              color: white;
                                                                                font-weight: bold;
                                                                                  transition: background-color 0.3s ease;
                                                                                  }

                                                                                  nav button:hover {
                                                                                    background-color: #4caf50;
                                                                                    }

                                                                                    .container {
                                                                                      padding: 20px;
                                                                                      }

                                                                                      .hidden {
                                                                                        display: none;
                                                                                        }

                                                                                        .card {
                                                                                          border: 1px solid #ccc;
                                                                                            border-radius: 8px;
                                                                                              padding: 15px;
                                                                                                margin: 10px 0;
                                                                                                }

                                                                                                .blue-link {
                                                                                                  color: blue;
                                                                                                    cursor: pointer;
                                                                                                      text-decoration: underline;
                                                                                                      }

                                                                                                      .form-group {
                                                                                                        margin-bottom: 15px;
                                                                                                        }

                                                                                                        .form-group label {
                                                                                                          display: block;
                                                                                                            margin-bottom: 5px;
                                                                                                            }

                                                                                                            .form-group input,
                                                                                                            .form-group select,
                                                                                                            .form-group textarea {
                                                                                                              width: 100%;
                                                                                                                padding: 8px;
                                                                                                                  box-sizing: border-box;
                                                                                                                  }

                                                                                                                  .actions button {
                                                                                                                    margin-right: 10px;
                                                                                                                    }

                                                                                                                    .checkbox {
                                                                                                                      display: flex;
                                                                                                                        align-items: center;
                                                                                                                        }

                                                                                                                        .checkbox input {
                                                                                                                          margin-right: 10px;
                                                                                                                          }

                                                                                                                            </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>
                                                                                                                                                        <button id="enviarBtn" class="hidden" onclick="showSection('enviar')">Enviar Matéria</button>
                                                                                                                                                            <button id="editorAvaliarBtn" class="hidden" onclick="alert('Avaliações carregadas!')">Ver Avaliações</button>
                                                                                                                                                                <button id="editorSugestoesBtn" class="hidden" onclick="alert('Sugestões carregadas!')">Ver Sugestões</button>
                                                                                                                                                                    <button id="editorParticiparBtn" class="hidden" onclick="alert('Participações carregadas!')">Ver Participações</button>
                                                                                                                                                                      </nav>  <div class="container">
                                                                                                                                                                          <section id="inicio">
                                                                                                                                                                                <h2>Últimas Matérias</h2>
                                                                                                                                                                                      <div class="card">
                                                                                                                                                                                              <h3>Investigação: O que há por trás da merenda?</h3>
                                                                                                                                                                                                      <p>Equipe do jornal investiga denúncias sobre a qualidade da merenda...</p>
                                                                                                                                                                                                              <span class="blue-link" onclick="alert('Abrindo matéria completa...')">Leia mais</span>
                                                                                                                                                                                                                    </div>
                                                                                                                                                                                                                        </section><section id="avaliar" class="hidden">
                                                                                                                                                                                                                          <h2>Avaliação</h2>
                                                                                                                                                                                                                            <form onsubmit="event.preventDefault(); alert('Comentário enviado!')">
                                                                                                                                                                                                                                <div class="form-group">
                                                                                                                                                                                                                                      <label>Nota (1 a 5):</label>
                                                                                                                                                                                                                                            <select required>
                                                                                                                                                                                                                                                    <option>1</option>
                                                                                                                                                                                                                                                            <option>2</option>
                                                                                                                                                                                                                                                                    <option>3</option>
                                                                                                                                                                                                                                                                            <option>4</option>
                                                                                                                                                                                                                                                                                    <option>5</option>
                                                                                                                                                                                                                                                                                          </select>
                                                                                                                                                                                                                                                                                              </div>
                                                                                                                                                                                                                                                                                                  <div class="form-group">
                                                                                                                                                                                                                                                                                                        <label>Comentário:</label>
                                                                                                                                                                                                                                                                                                              <textarea required></textarea>
                                                                                                                                                                                                                                                                                                                  </div>
                                                                                                                                                                                                                                                                                                                      <button type="submit">Enviar Avaliação</button>
                                                                                                                                                                                                                                                                                                                        </form>
                                                                                                                                                                                                                                                                                                                        </section>

                                                                                                                                                                                                                                                                                                                        <section id="sugestoes" class="hidden">
                                                                                                                                                                                                                                                                                                                          <h2>Sugestões</h2>
                                                                                                                                                                                                                                                                                                                            <form onsubmit="event.preventDefault(); alert('Sugestão enviada!')">
                                                                                                                                                                                                                                                                                                                                <div class="form-group">
                                                                                                                                                                                                                                                                                                                                      <label>Escreva sua sugestão (mínimo 10 palavras):</label>
                                                                                                                                                                                                                                                                                                                                            <textarea required minlength="10"></textarea>
                                                                                                                                                                                                                                                                                                                                                </div>
                                                                                                                                                                                                                                                                                                                                                    <button type="submit">Enviar Sugestão</button>
                                                                                                                                                                                                                                                                                                                                                      </form>
                                                                                                                                                                                                                                                                                                                                                      </section>

                                                                                                                                                                                                                                                                                                                                                      <section id="participar" class="hidden">
                                                                                                                                                                                                                                                                                                                                                        <h2>Participe</h2>
                                                                                                                                                                                                                                                                                                                                                          <form onsubmit="event.preventDefault(); alert('Inscrição enviada!')">
                                                                                                                                                                                                                                                                                                                                                              <div class="form-group">
                                                                                                                                                                                                                                                                                                                                                                    <label>Nome Completo:</label>
                                                                                                                                                                                                                                                                                                                                                                          <input type="text" required>
                                                                                                                                                                                                                                                                                                                                                                              </div>
                                                                                                                                                                                                                                                                                                                                                                                  <div class="form-group">
                                                                                                                                                                                                                                                                                                                                                                                        <label>Série:</label>
                                                                                                                                                                                                                                                                                                                                                                                              <input type="text" required>
                                                                                                                                                                                                                                                                                                                                                                                                  </div>
                                                                                                                                                                                                                                                                                                                                                                                                      <div class="form-group">
                                                                                                                                                                                                                                                                                                                                                                                                            <label>Período:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                  <select required>
                                                                                                                                                                                                                                                                                                                                                                                                                          <option>Manhã</option>
                                                                                                                                                                                                                                                                                                                                                                                                                                  <option>Tarde</option>
                                                                                                                                                                                                                                                                                                                                                                                                                                          <option>Noite</option>
                                                                                                                                                                                                                                                                                                                                                                                                                                                </select>
                                                                                                                                                                                                                                                                                                                                                                                                                                                    </div>
                                                                                                                                                                                                                                                                                                                                                                                                                                                        <div class="form-group">
                                                                                                                                                                                                                                                                                                                                                                                                                                                              <label>RA (começa com 000):</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <input type="text" pattern="000[0-9]{1,}" required>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        </div>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <details>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <summary>Termo de Condição 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>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <div class="checkbox">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <input type="checkbox" required>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <label>Declaro que li e concordo com os termos acima para participar do Jornal Oliveira.</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        </div>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <button type="submit">Enviar Participação</button>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              </form>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              </section>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <section id="login" class="hidden">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <h2>Login</h2>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <form onsubmit="event.preventDefault(); verificarCodigo()">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      <div class="form-group">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <label>Código/Senha:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <input type="text" id="codigoInput" required>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      </div>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <button type="submit">Entrar</button>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            </form>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            </section>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <section id="enviar" class="hidden">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <h2>Enviar Matéria</h2>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <form onsubmit="event.preventDefault(); alert('Matéria enviada!')">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <div class="form-group">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <label>Título:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <input type="text" required>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    </div>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <div class="form-group">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <label>Líde:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <input type="text" required>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        </div>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <div class="form-group">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <label>Corpo da Matéria:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <textarea required></textarea>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            </div>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <div class="form-group">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      <label>Nome do Autor:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <input type="text" required>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                </div>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <div class="form-group">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <label>Outros Participantes:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <input type="text">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    </div>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <div class="form-group">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <label>Data:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <input type="date" required>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        </div>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <div class="form-group">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <label>Categoria da Matéria:</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>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  </div>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      <button type="submit">Enviar</button>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        </form>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        </section>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          </div>  <script>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              function showSection(id) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    document.querySelectorAll('section').forEach(section => section.classList.add('hidden'));
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          document.getElementById(id).classList.remove('hidden');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  function verificarCodigo() {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        const code = document.getElementById('codigoInput').value;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              if (code === 'BRJORNAL') {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      document.getElementById('enviarBtn').classList.remove('hidden');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              showSection('inicio');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    } else if (code === 'BRJORNALEDITOR') {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            document.getElementById('editorAvaliarBtn').classList.remove('hidden');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    document.getElementById('editorSugestoesBtn').classList.remove('hidden');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            document.getElementById('editorParticiparBtn').classList.remove('hidden');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    showSection('inicio');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          } 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-8" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body></html>