File size: 67,297 Bytes
8c54909
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html><html lang="pt-BR">
  <head>
    <meta charset="UTF-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Jornal Oliveira</title>
          <link href="https://fonts.googleapis.com/css2?family=Engravers+Old+English+BT&display=swap" rel="stylesheet">
            <style>
                body {
                      font-family: Arial, sans-serif;
                            margin: 0;
                                  background-color: #ffffff;
                                        color: #000000;
                                            }
                                                header {
                                                      background-color: #388e3c;
                                                            padding: 20px;
                                                                  text-align: center;
                                                                        color: white;
                                                                              font-family: 'Engravers Old English BT', serif;
                                                                                    font-size: 30px;
                                                                                        }
                                                                                            nav {
                                                                                                  display: flex;
                                                                                                        justify-content: center;
                                                                                                              background-color: #81c784;
                                                                                                                    padding: 10px;
                                                                                                                        }
                                                                                                                            nav button {
                                                                                                                                  margin: 0 10px;
                                                                                                                                        padding: 10px;
                                                                                                                                              background-color: #66bb6a;
                                                                                                                                                    border: none;
                                                                                                                                                          cursor: pointer;
                                                                                                                                                                color: white;
                                                                                                                                                                      font-weight: bold;
                                                                                                                                                                          }
                                                                                                                                                                              .section {
                                                                                                                                                                                    display: none;
                                                                                                                                                                                          padding: 20px;
                                                                                                                                                                                              }
                                                                                                                                                                                                  .active {
                                                                                                                                                                                                        display: block;
                                                                                                                                                                                                            }
                                                                                                                                                                                                                label, input, textarea, select {
                                                                                                                                                                                                                      display: block;
                                                                                                                                                                                                                            margin-bottom: 10px;
                                                                                                                                                                                                                                  width: 100%;
                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                          input[type="text"], textarea, select {
                                                                                                                                                                                                                                                padding: 8px;
                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                        .hidden {
                                                                                                                                                                                                                                                              display: none;
                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                      .category {
                                                                                                                                                                                                                                                                            margin: 5px 0;
                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                  </style>
                                                                                                                                                                                                                                                                                  </head>
                                                                                                                                                                                                                                                                                  <body>
                                                                                                                                                                                                                                                                                    <header>Jornal Oliveira</header>
                                                                                                                                                                                                                                                                                      <nav>
                                                                                                                                                                                                                                                                                          <button onclick="showSection('inicio')">Início</button>
                                                                                                                                                                                                                                                                                              <button onclick="showSection('avaliar')">Avaliar</button>
                                                                                                                                                                                                                                                                                                  <button onclick="showSection('sugestoes')">Sugestões</button>
                                                                                                                                                                                                                                                                                                      <button onclick="showSection('participar')">Participe</button>
                                                                                                                                                                                                                                                                                                          <button onclick="showSection('login')">Login</button>
                                                                                                                                                                                                                                                                                                            </nav>  <section id="inicio" class="section active">
                                                                                                                                                                                                                                                                                                                <h2>Últimas matérias</h2>
                                                                                                                                                                                                                                                                                                                    <div id="materias-lista">(Conteúdo dinâmico futuro)</div>
                                                                                                                                                                                                                                                                                                                      </section>  <section id="avaliar" class="section">
                                                                                                                                                                                                                                                                                                                          <h2>Avalie</h2>
                                                                                                                                                                                                                                                                                                                              <label>Nota (1 a 5)</label>
                                                                                                                                                                                                                                                                                                                                  <select>
                                                                                                                                                                                                                                                                                                                                        <option>1</option>
                                                                                                                                                                                                                                                                                                                                              <option>2</option>
                                                                                                                                                                                                                                                                                                                                                    <option>3</option>
                                                                                                                                                                                                                                                                                                                                                          <option>4</option>
                                                                                                                                                                                                                                                                                                                                                                <option>5</option>
                                                                                                                                                                                                                                                                                                                                                                    </select>
                                                                                                                                                                                                                                                                                                                                                                        <label>Comentário (obrigatório)</label>
                                                                                                                                                                                                                                                                                                                                                                            <textarea required></textarea>
                                                                                                                                                                                                                                                                                                                                                                                <button>Enviar Avaliação</button>
                                                                                                                                                                                                                                                                                                                                                                                  </section>  <section id="sugestoes" class="section">
                                                                                                                                                                                                                                                                                                                                                                                      <h2>Envie sua sugestão</h2>
                                                                                                                                                                                                                                                                                                                                                                                          <textarea placeholder="Escreva ao menos 10 palavras" minlength="10" required></textarea>
                                                                                                                                                                                                                                                                                                                                                                                              <button>Enviar Sugestão</button>
                                                                                                                                                                                                                                                                                                                                                                                                </section>  <section id="participar" class="section">
                                                                                                                                                                                                                                                                                                                                                                                                    <h2>Participe</h2>
                                                                                                                                                                                                                                                                                                                                                                                                        <label>Nome completo:</label>
                                                                                                                                                                                                                                                                                                                                                                                                            <input type="text" required><label>Série:</label>
                                                                                                                                                                                                                                                                                                                                                                                                            <input type="text" required>

                                                                                                                                                                                                                                                                                                                                                                                                            <label>Período:</label>
                                                                                                                                                                                                                                                                                                                                                                                                            <select required>
                                                                                                                                                                                                                                                                                                                                                                                                              <option>Manhã</option>
                                                                                                                                                                                                                                                                                                                                                                                                                <option>Tarde</option>
                                                                                                                                                                                                                                                                                                                                                                                                                  <option>Noite</option>
                                                                                                                                                                                                                                                                                                                                                                                                                  </select>

                                                                                                                                                                                                                                                                                                                                                                                                                  <label>RA:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                  <input type="text" placeholder="Começando com 000" pattern="000\d+" required>
                                                                                                                                                                                                                                                                                                                                                                                                                  <details>
                                                                                                                                                                                                                                                                                                                                                                                                                    <summary>Leia o termo de participação</summary>
                                                                                                                                                                                                                                                                                                                                                                                                                      <p>
                                                                                                                                                                                                                                                                                                                                                                                                                          TERMO DE CONDIÇÃO DE PARTICIPAÇÃO – JORNAL OLIVEIRA<br><br>
                                                                                                                                                                                                                                                                                                                                                                                                                              Prezado(a) estudante,<br><br>
                                                                                                                                                                                                                                                                                                                                                                                                                                  Para fins de organização e reconhecimento dos participantes do Jornal Oliveira, solicitamos que os novos integrantes forneçam o seu RA (Registro do Aluno) no momento da inscrição. Essa informação será utilizada exclusivamente para identificação interna no âmbito do projeto.<br><br>
                                                                                                                                                                                                                                                                                                                                                                                                                                      O Jornal Oliveira compromete-se a utilizar o RA apenas para os fins aqui descritos, não realizando qualquer tipo de divulgação ou compartilhamento não autorizado. Contudo, ao fornecer essa informação, o participante declara estar ciente de que a organização não se responsabiliza por eventuais vazamentos ou acessos indevidos que ocorram por fatores externos ou alheios à sua vontade.<br><br>
                                                                                                                                                                                                                                                                                                                                                                                                                                          Ao assinalar a opção abaixo, o(a) participante declara estar de acordo com os termos apresentados e autoriza expressamente o uso do seu RA para os fins descritos.
                                                                                                                                                                                                                                                                                                                                                                                                                                            </p>
                                                                                                                                                                                                                                                                                                                                                                                                                                            </details>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <label><input type="checkbox" required> Declaro que li e concordo com os termos acima para participar do Jornal Oliveira.</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <button>Enviar Participação</button>

                                                                                                                                                                                                                                                                                                                                                                                                                                              </section>  <section id="login" class="section">
                                                                                                                                                                                                                                                                                                                                                                                                                                                  <h2>Login</h2>
                                                                                                                                                                                                                                                                                                                                                                                                                                                      <label>Digite o código/senha:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                          <input type="text" id="codigoInput">
                                                                                                                                                                                                                                                                                                                                                                                                                                                              <button onclick="verificaLogin()">Entrar</button>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <div id="login-extra" class="hidden">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <button onclick="showSection('enviarMateria')">Enviar Matéria</button>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <div id="editorExtras" class="hidden">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      <button onclick="alert('Ver avaliações')">Ver Avaliações</button>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <button onclick="alert('Ver sugestões')">Ver Sugestões</button>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      <button onclick="alert('Ver participações')">Ver Participações</button>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            </div>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                </div>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  </section>  <section id="enviarMateria" class="section hidden">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      <h2>Enviar Matéria</h2>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <label>Título:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <input type="text" required>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <label>Líde:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      <textarea required></textarea>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <label>Corpo do texto:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <textarea required></textarea>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <label>Autor principal:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      <input type="text" required>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <label>Outros participantes:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <input type="text">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <label>Data:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      <input type="date" required>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <label>Categoria:</label>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <select required>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <option>Notícias da Escola</option>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <option>Entrevistas</option>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <option>Opinião</option>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      <option>Cultura e Arte</option>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <option>Esportes</option>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <option>Humor</option>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <option>Você Sabia?</option>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <option>Projetos e Grêmios</option>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <option>Fala Estudante</option>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <option>Investigação</option>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              </select>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <button>Enviar Matéria</button>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    </section>  <script>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        function showSection(id) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              document.querySelectorAll('.section').forEach(sec => sec.classList.remove('active'));
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    document.getElementById(id).classList.add('active');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            function verificaLogin() {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const input = document.getElementById('codigoInput').value;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        const extras = document.getElementById('login-extra');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              const editor = document.getElementById('editorExtras');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    extras.classList.remove('hidden');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          if (input === 'BRJORNALEDITOR') {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  editor.classList.remove('hidden');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        } else {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                editor.classList.add('hidden');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            </script><p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Rwhehhehe/teste-1-7" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            </html>