Rwhehhehe commited on
Commit
0c3dd23
·
verified ·
1 Parent(s): 55b5ba0

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +174 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ghhh
3
- emoji: 📉
4
- colorFrom: yellow
5
- colorTo: blue
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: ghhh
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: red
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,174 @@
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>Formulário - Jornal Oliveira</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ background-color: #000;
11
+ color: white;
12
+ margin: 0;
13
+ padding: 0;
14
+ }
15
+ .container {
16
+ max-width: 700px;
17
+ margin: 50px auto;
18
+ background-color: #111;
19
+ padding: 30px;
20
+ border-radius: 15px;
21
+ box-shadow: 0 0 20px rgba(0,0,0,0.8);
22
+ }
23
+ h1 {
24
+ text-align: center;
25
+ color: #388e3c;
26
+ }
27
+ label {
28
+ display: block;
29
+ margin-top: 15px;
30
+ color: #388e3c;
31
+ font-weight: bold;
32
+ }
33
+ input, select, textarea {
34
+ width: 100%;
35
+ padding: 10px;
36
+ margin-top: 5px;
37
+ border-radius: 5px;
38
+ border: 1px solid #388e3c;
39
+ background-color: #000;
40
+ color: white;
41
+ box-sizing: border-box;
42
+ }
43
+ textarea {
44
+ resize: vertical;
45
+ }
46
+ .termo {
47
+ margin-top: 20px;
48
+ background-color: #111;
49
+ padding: 15px;
50
+ border-radius: 8px;
51
+ border: 1px solid #388e3c;
52
+ color: white;
53
+ }
54
+ .termo p {
55
+ display: none;
56
+ }
57
+ .termo .mostrar {
58
+ display: block;
59
+ }
60
+ .lermais {
61
+ color: #388e3c;
62
+ cursor: pointer;
63
+ text-decoration: underline;
64
+ margin-top: 10px;
65
+ display: inline-block;
66
+ }
67
+ button {
68
+ background-color: #388e3c;
69
+ color: white;
70
+ padding: 12px 20px;
71
+ border: none;
72
+ border-radius: 5px;
73
+ margin-top: 20px;
74
+ cursor: pointer;
75
+ width: 100%;
76
+ font-size: 16px;
77
+ }
78
+ button:hover {
79
+ background-color: #2e7030;
80
+ }
81
+ </style>
82
+ </head>
83
+ <body>
84
+
85
+ <div class="container">
86
+ <h1>Formulário de Participação</h1>
87
+
88
+ <form id="formulario">
89
+ <label for="nome">Nome:</label>
90
+ <input type="text" id="nome" required>
91
+
92
+ <label for="periodo">Período:</label>
93
+ <select id="periodo" required>
94
+ <option value="">Selecione</option>
95
+ <option value="Manhã">Manhã</option>
96
+ <option value="Tarde">Tarde</option>
97
+ <option value="Noite">Noite</option>
98
+ </select>
99
+
100
+ <label for="sala">Sala:</label>
101
+ <input type="text" id="sala" required>
102
+
103
+ <label for="ra">RA:</label>
104
+ <input type="text" id="ra" required>
105
+
106
+ <label for="whatsapp">Número de WhatsApp (opcional):</label>
107
+ <input type="text" id="whatsapp">
108
+
109
+ <label for="mensagem">Mensagem:</label>
110
+ <textarea id="mensagem" rows="4" required></textarea>
111
+
112
+ <div class="termo">
113
+ <strong>TERMO DE CONDIÇÃO DE PARTICIPAÇÃO – JORNAL OLIVEIRA</strong>
114
+ <div id="textoTermo">
115
+ <p>
116
+ Prezado(a) estudante,<br><br>
117
+ 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 e externa no âmbito do jornal.<br><br>
118
+ 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>
119
+ Ao marcar 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.
120
+ </p>
121
+ </div>
122
+ <span class="lermais" onclick="mostrarTermo()">Ler mais</span><br>
123
+ <label>
124
+ <input type="checkbox" id="termo" required> Li e concordo com os termos acima.
125
+ </label>
126
+ </div>
127
+
128
+ <button type="button" onclick="enviarWhatsApp()">Enviar</button>
129
+ </form>
130
+ </div>
131
+
132
+ <script>
133
+ function mostrarTermo() {
134
+ const texto = document.querySelector('#textoTermo p');
135
+ texto.classList.toggle('mostrar');
136
+ }
137
+
138
+ function enviarWhatsApp() {
139
+ const nome = document.getElementById('nome').value;
140
+ const periodo = document.getElementById('periodo').value;
141
+ const sala = document.getElementById('sala').value;
142
+ const ra = document.getElementById('ra').value;
143
+ const whatsapp = document.getElementById('whatsapp').value;
144
+ const mensagem = document.getElementById('mensagem').value;
145
+ const termo = document.getElementById('termo').checked;
146
+
147
+ if (!nome || !periodo || !sala || !ra || !mensagem) {
148
+ alert('Por favor, preencha todos os campos obrigatórios.');
149
+ return;
150
+ }
151
+
152
+ if (!termo) {
153
+ alert('Você precisa aceitar os termos para continuar.');
154
+ return;
155
+ }
156
+
157
+ const texto = `*Formulário de Participação - Jornal Oliveira*\n\n` +
158
+ `*Nome:* ${nome}\n` +
159
+ `*Período:* ${periodo}\n` +
160
+ `*Sala:* ${sala}\n` +
161
+ `*RA:* ${ra}\n` +
162
+ (whatsapp ? `*WhatsApp:* ${whatsapp}\n` : '') +
163
+ `*Mensagem:* ${mensagem}\n\n` +
164
+ `✔️ Aceitou os Termos.`;
165
+
166
+ const numero = '5511981722855'; // Seu número com DDI +55
167
+ const url = `https://wa.me/${numero}?text=${encodeURIComponent(texto)}`;
168
+
169
+ window.open(url, '_blank');
170
+ }
171
+ </script>
172
+
173
+ <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/ghhh" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
174
+ </html>
prompts.txt ADDED
File without changes