Add 3 files
Browse files- README.md +7 -5
- index.html +175 -19
- prompts.txt +0 -0
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
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-7
|
3 |
+
emoji: 🐳
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: yellow
|
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,175 @@
|
|
1 |
-
<!
|
2 |
-
<
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html><html lang="pt-BR">
|
2 |
+
<head>
|
3 |
+
<meta charset="UTF-8">
|
4 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
5 |
+
<title>Jornal Oliveira</title>
|
6 |
+
<link href="https://fonts.googleapis.com/css2?family=Engravers+Old+English+BT&display=swap" rel="stylesheet">
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
margin: 0;
|
11 |
+
background-color: #ffffff;
|
12 |
+
color: #000000;
|
13 |
+
}
|
14 |
+
header {
|
15 |
+
background-color: #388e3c;
|
16 |
+
padding: 20px;
|
17 |
+
text-align: center;
|
18 |
+
color: white;
|
19 |
+
font-family: 'Engravers Old English BT', serif;
|
20 |
+
font-size: 30px;
|
21 |
+
}
|
22 |
+
nav {
|
23 |
+
display: flex;
|
24 |
+
justify-content: center;
|
25 |
+
background-color: #81c784;
|
26 |
+
padding: 10px;
|
27 |
+
}
|
28 |
+
nav button {
|
29 |
+
margin: 0 10px;
|
30 |
+
padding: 10px;
|
31 |
+
background-color: #66bb6a;
|
32 |
+
border: none;
|
33 |
+
cursor: pointer;
|
34 |
+
color: white;
|
35 |
+
font-weight: bold;
|
36 |
+
}
|
37 |
+
.section {
|
38 |
+
display: none;
|
39 |
+
padding: 20px;
|
40 |
+
}
|
41 |
+
.active {
|
42 |
+
display: block;
|
43 |
+
}
|
44 |
+
label, input, textarea, select {
|
45 |
+
display: block;
|
46 |
+
margin-bottom: 10px;
|
47 |
+
width: 100%;
|
48 |
+
}
|
49 |
+
input[type="text"], textarea, select {
|
50 |
+
padding: 8px;
|
51 |
+
}
|
52 |
+
.hidden {
|
53 |
+
display: none;
|
54 |
+
}
|
55 |
+
.category {
|
56 |
+
margin: 5px 0;
|
57 |
+
}
|
58 |
+
</style>
|
59 |
+
</head>
|
60 |
+
<body>
|
61 |
+
<header>Jornal Oliveira</header>
|
62 |
+
<nav>
|
63 |
+
<button onclick="showSection('inicio')">Início</button>
|
64 |
+
<button onclick="showSection('avaliar')">Avaliar</button>
|
65 |
+
<button onclick="showSection('sugestoes')">Sugestões</button>
|
66 |
+
<button onclick="showSection('participar')">Participe</button>
|
67 |
+
<button onclick="showSection('login')">Login</button>
|
68 |
+
</nav> <section id="inicio" class="section active">
|
69 |
+
<h2>Últimas matérias</h2>
|
70 |
+
<div id="materias-lista">(Conteúdo dinâmico futuro)</div>
|
71 |
+
</section> <section id="avaliar" class="section">
|
72 |
+
<h2>Avalie</h2>
|
73 |
+
<label>Nota (1 a 5)</label>
|
74 |
+
<select>
|
75 |
+
<option>1</option>
|
76 |
+
<option>2</option>
|
77 |
+
<option>3</option>
|
78 |
+
<option>4</option>
|
79 |
+
<option>5</option>
|
80 |
+
</select>
|
81 |
+
<label>Comentário (obrigatório)</label>
|
82 |
+
<textarea required></textarea>
|
83 |
+
<button>Enviar Avaliação</button>
|
84 |
+
</section> <section id="sugestoes" class="section">
|
85 |
+
<h2>Envie sua sugestão</h2>
|
86 |
+
<textarea placeholder="Escreva ao menos 10 palavras" minlength="10" required></textarea>
|
87 |
+
<button>Enviar Sugestão</button>
|
88 |
+
</section> <section id="participar" class="section">
|
89 |
+
<h2>Participe</h2>
|
90 |
+
<label>Nome completo:</label>
|
91 |
+
<input type="text" required><label>Série:</label>
|
92 |
+
<input type="text" required>
|
93 |
+
|
94 |
+
<label>Período:</label>
|
95 |
+
<select required>
|
96 |
+
<option>Manhã</option>
|
97 |
+
<option>Tarde</option>
|
98 |
+
<option>Noite</option>
|
99 |
+
</select>
|
100 |
+
|
101 |
+
<label>RA:</label>
|
102 |
+
<input type="text" placeholder="Começando com 000" pattern="000\d+" required>
|
103 |
+
<details>
|
104 |
+
<summary>Leia o termo de participação</summary>
|
105 |
+
<p>
|
106 |
+
TERMO DE CONDIÇÃO DE PARTICIPAÇÃO – JORNAL OLIVEIRA<br><br>
|
107 |
+
Prezado(a) estudante,<br><br>
|
108 |
+
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>
|
109 |
+
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>
|
110 |
+
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.
|
111 |
+
</p>
|
112 |
+
</details>
|
113 |
+
<label><input type="checkbox" required> Declaro que li e concordo com os termos acima para participar do Jornal Oliveira.</label>
|
114 |
+
<button>Enviar Participação</button>
|
115 |
+
|
116 |
+
</section> <section id="login" class="section">
|
117 |
+
<h2>Login</h2>
|
118 |
+
<label>Digite o código/senha:</label>
|
119 |
+
<input type="text" id="codigoInput">
|
120 |
+
<button onclick="verificaLogin()">Entrar</button>
|
121 |
+
<div id="login-extra" class="hidden">
|
122 |
+
<button onclick="showSection('enviarMateria')">Enviar Matéria</button>
|
123 |
+
<div id="editorExtras" class="hidden">
|
124 |
+
<button onclick="alert('Ver avaliações')">Ver Avaliações</button>
|
125 |
+
<button onclick="alert('Ver sugestões')">Ver Sugestões</button>
|
126 |
+
<button onclick="alert('Ver participações')">Ver Participações</button>
|
127 |
+
</div>
|
128 |
+
</div>
|
129 |
+
</section> <section id="enviarMateria" class="section hidden">
|
130 |
+
<h2>Enviar Matéria</h2>
|
131 |
+
<label>Título:</label>
|
132 |
+
<input type="text" required>
|
133 |
+
<label>Líde:</label>
|
134 |
+
<textarea required></textarea>
|
135 |
+
<label>Corpo do texto:</label>
|
136 |
+
<textarea required></textarea>
|
137 |
+
<label>Autor principal:</label>
|
138 |
+
<input type="text" required>
|
139 |
+
<label>Outros participantes:</label>
|
140 |
+
<input type="text">
|
141 |
+
<label>Data:</label>
|
142 |
+
<input type="date" required>
|
143 |
+
<label>Categoria:</label>
|
144 |
+
<select required>
|
145 |
+
<option>Notícias da Escola</option>
|
146 |
+
<option>Entrevistas</option>
|
147 |
+
<option>Opinião</option>
|
148 |
+
<option>Cultura e Arte</option>
|
149 |
+
<option>Esportes</option>
|
150 |
+
<option>Humor</option>
|
151 |
+
<option>Você Sabia?</option>
|
152 |
+
<option>Projetos e Grêmios</option>
|
153 |
+
<option>Fala Estudante</option>
|
154 |
+
<option>Investigação</option>
|
155 |
+
</select>
|
156 |
+
<button>Enviar Matéria</button>
|
157 |
+
</section> <script>
|
158 |
+
function showSection(id) {
|
159 |
+
document.querySelectorAll('.section').forEach(sec => sec.classList.remove('active'));
|
160 |
+
document.getElementById(id).classList.add('active');
|
161 |
+
}
|
162 |
+
|
163 |
+
function verificaLogin() {
|
164 |
+
const input = document.getElementById('codigoInput').value;
|
165 |
+
const extras = document.getElementById('login-extra');
|
166 |
+
const editor = document.getElementById('editorExtras');
|
167 |
+
extras.classList.remove('hidden');
|
168 |
+
if (input === 'BRJORNALEDITOR') {
|
169 |
+
editor.classList.remove('hidden');
|
170 |
+
} else {
|
171 |
+
editor.classList.add('hidden');
|
172 |
+
}
|
173 |
+
}
|
174 |
+
</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>
|
175 |
+
</html>
|
prompts.txt
ADDED
File without changes
|