Rwhehhehe commited on
Commit
c64fe7a
·
verified ·
1 Parent(s): bfcc178

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +212 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Teste 1 4
3
- emoji: 🏢
4
- colorFrom: pink
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: teste-1-4
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: pink
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,212 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="pt-br">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6
+ <title>Jornal Oliveira</title>
7
+ <style>
8
+ body {
9
+ font-family: Georgia, serif;
10
+ background-color: white;
11
+ margin: 0;
12
+ padding: 0;
13
+ }
14
+
15
+ header {
16
+ background-color: #388e3c;
17
+ padding: 20px;
18
+ color: white;
19
+ text-align: center;
20
+ font-size: 2em;
21
+ font-family: 'Times New Roman', serif;
22
+ letter-spacing: 2px;
23
+ }
24
+
25
+ nav {
26
+ background-color: #66bb6a;
27
+ display: flex;
28
+ justify-content: space-around;
29
+ padding: 10px;
30
+ }
31
+
32
+ nav button {
33
+ background-color: transparent;
34
+ border: 2px solid white;
35
+ padding: 10px;
36
+ color: white;
37
+ border-radius: 5px;
38
+ cursor: pointer;
39
+ }
40
+
41
+ section {
42
+ padding: 20px;
43
+ }
44
+
45
+ .materia {
46
+ border-bottom: 1px solid #ccc;
47
+ margin-bottom: 15px;
48
+ }
49
+
50
+ .materia h3 {
51
+ margin: 0;
52
+ color: #2e7d32;
53
+ }
54
+
55
+ .botao-enviar {
56
+ background-color: #388e3c;
57
+ color: white;
58
+ border: none;
59
+ padding: 10px 15px;
60
+ cursor: pointer;
61
+ border-radius: 5px;
62
+ }
63
+
64
+ .oculto {
65
+ display: none;
66
+ }
67
+
68
+ .termo {
69
+ font-size: 0.9em;
70
+ color: #555;
71
+ }
72
+
73
+ .destaque {
74
+ color: red;
75
+ font-weight: bold;
76
+ }
77
+
78
+ label {
79
+ display: block;
80
+ margin-top: 10px;
81
+ }
82
+
83
+ input, textarea, select {
84
+ width: 100%;
85
+ padding: 8px;
86
+ margin-top: 5px;
87
+ }
88
+
89
+ .campo-avaliacao {
90
+ display: flex;
91
+ gap: 10px;
92
+ }
93
+ </style>
94
+ </head>
95
+ <body>
96
+ <header>Jornal Oliveira</header>
97
+ <nav>
98
+ <button onclick="mostrar('inicio')">Início</button>
99
+ <button onclick="mostrar('avaliar')">Avaliar</button>
100
+ <button onclick="mostrar('sugestoes')">Sugestões</button>
101
+ <button onclick="mostrar('participar')">Participe</button>
102
+ <button onclick="mostrar('login')">Login</button>
103
+ </nav>
104
+
105
+ <section id="inicio">
106
+ <h2>Últimas matérias</h2>
107
+ <div class="materia">
108
+ <h3>Título da Matéria</h3>
109
+ <p>Resumo da matéria feito pelo autor... <a href="#">Leia mais</a></p>
110
+ </div>
111
+ <!-- Outras matérias aqui -->
112
+ </section>
113
+
114
+ <section id="avaliar" class="oculto">
115
+ <h2 style="color:black;">Avalie o Jornal</h2>
116
+ <label>Nota (1 a 5):</label>
117
+ <select id="nota">
118
+ <option value="1">1</option>
119
+ <option value="2">2</option>
120
+ <option value="3">3</option>
121
+ <option value="4">4</option>
122
+ <option value="5">5</option>
123
+ </select>
124
+ <label>Comentário (opcional):</label>
125
+ <textarea placeholder="Escreva algo se quiser..."></textarea>
126
+ <button class="botao-enviar" onclick="enviarAvaliacao()">Enviar</button>
127
+ </section>
128
+
129
+ <section id="sugestoes" class="oculto">
130
+ <h2>Sugestões</h2>
131
+ <label>Seu nome (obrigatório):</label>
132
+ <input type="text" required />
133
+ <label>Escreva sua sugestão:</label>
134
+ <textarea></textarea>
135
+ <button class="botao-enviar">Enviar</button>
136
+ </section>
137
+
138
+ <section id="participar" class="oculto">
139
+ <h2>Participar do Jornal Oliveira</h2>
140
+ <label>RA (Registro de Aluno):</label>
141
+ <input type="text" />
142
+ <label>
143
+ <input type="checkbox" />
144
+ Declaro que li e concordo com os termos abaixo
145
+ </label>
146
+ <details>
147
+ <summary>Leia mais</summary>
148
+ <p class="termo">
149
+ Prezado(a) estudante,<br><br>
150
+ 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>
151
+ 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. <span class="destaque">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</span> que ocorram por fatores externos ou alheios à sua vontade.<br><br>
152
+ Ao assinalar a opção acima, o(a) participante declara estar de acordo com os termos apresentados e autoriza expressamente o uso do seu RA para os fins descritos.
153
+ </p>
154
+ </details>
155
+ <button class="botao-enviar">Enviar</button>
156
+ </section>
157
+
158
+ <section id="login" class="oculto">
159
+ <h2>Login</h2>
160
+ <label>Código de acesso:</label>
161
+ <input type="password" id="codigo" />
162
+ <button class="botao-enviar" onclick="verificarCodigo()">Entrar</button>
163
+ </section>
164
+
165
+ <section id="enviar-materia" class="oculto">
166
+ <h2>Enviar Matéria</h2>
167
+ <label>Título:</label>
168
+ <input type="text" />
169
+ <label>Lige (chamada de destaque):</label>
170
+ <textarea></textarea>
171
+ <label>Corpo da notícia (desenvolvimento):</label>
172
+ <textarea></textarea>
173
+ <label>Fontes e declarações:</label>
174
+ <textarea></textarea>
175
+ <label>Conclusão:</label>
176
+ <textarea></textarea>
177
+ <label>Participantes (opcional):</label>
178
+ <textarea></textarea>
179
+ <button class="botao-enviar">Enviar Matéria</button>
180
+ </section>
181
+
182
+ <script>
183
+ function mostrar(id) {
184
+ document.querySelectorAll("section").forEach(s => s.classList.add("oculto"));
185
+ document.getElementById(id).classList.remove("oculto");
186
+ }
187
+
188
+ function verificarCodigo() {
189
+ const codigo = document.getElementById("codigo").value;
190
+ if (codigo === "BRJORNAL") {
191
+ alert("Bem-vindo, jornalista!");
192
+ document.getElementById("enviar-materia").classList.remove("oculto");
193
+ mostrar("enviar-materia");
194
+ } else if (codigo === "BRJORNALEDITOR") {
195
+ alert("Bem-vindo, editor!");
196
+ // Aqui você pode expandir funções específicas para o editor
197
+ } else {
198
+ alert("Código incorreto.");
199
+ }
200
+ }
201
+
202
+ function enviarAvaliacao() {
203
+ const nota = parseInt(document.getElementById("nota").value);
204
+ if (nota < 1 || nota > 5) {
205
+ alert("Nota inválida!");
206
+ return;
207
+ }
208
+ alert("Avaliação enviada. Obrigado!");
209
+ }
210
+ </script>
211
+ <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-4" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
212
+ </html>
prompts.txt ADDED
File without changes