Rwhehhehe commited on
Commit
ead404d
·
verified ·
1 Parent(s): 5b85302

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +152 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Grhdud
3
- emoji: 🐠
4
- colorFrom: purple
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: grhdud
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: blue
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,152 @@
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
+ <title>Prova Escolar</title>
6
+ <style>
7
+ body {
8
+ font-family: Arial, sans-serif;
9
+ padding: 20px;
10
+ max-width: 600px;
11
+ margin: auto;
12
+ }
13
+ h1, h2 {
14
+ text-align: center;
15
+ }
16
+ .pergunta {
17
+ margin-bottom: 20px;
18
+ }
19
+ .resultado {
20
+ border-top: 2px solid #ccc;
21
+ margin-top: 30px;
22
+ padding-top: 20px;
23
+ }
24
+ .oculto {
25
+ display: none;
26
+ }
27
+ </style>
28
+ </head>
29
+ <body>
30
+
31
+ <h1>Prova Escolar</h1>
32
+
33
+ <label for="nomeAluno"><strong>Nome do Aluno:</strong></label><br>
34
+ <input type="text" id="nomeAluno" required><br><br>
35
+
36
+ <form id="formulario">
37
+
38
+ <h2>Língua Portuguesa</h2>
39
+ <div class="pergunta">
40
+ <p>1. Qual é o plural de "cão"?</p>
41
+ <label><input type="radio" name="port1" value="errada"> Cãos</label><br>
42
+ <label><input type="radio" name="port1" value="certa"> Cães</label><br>
43
+ <label><input type="radio" name="port1" value="errada"> Cãozes</label><br>
44
+ <label><input type="radio" name="port1" value="errada"> Não sei</label>
45
+ </div>
46
+
47
+ <div class="pergunta">
48
+ <p>2. Complete: O gato _______ no telhado.</p>
49
+ <label><input type="radio" name="port2" value="errada"> corre</label><br>
50
+ <label><input type="radio" name="port2" value="certa"> está</label><br>
51
+ <label><input type="radio" name="port2" value="errada"> fui</label><br>
52
+ <label><input type="radio" name="port2" value="errada"> Não sei</label>
53
+ </div>
54
+
55
+ <div class="pergunta">
56
+ <p>3. Qual dessas palavras é um substantivo?</p>
57
+ <label><input type="radio" name="port3" value="errada"> rapidamente</label><br>
58
+ <label><input type="radio" name="port3" value="certa"> menino</label><br>
59
+ <label><input type="radio" name="port3" value="errada"> bonito</label><br>
60
+ <label><input type="radio" name="port3" value="errada"> Não sei</label>
61
+ </div>
62
+
63
+ <h2>Matemática</h2>
64
+ <div class="pergunta">
65
+ <p>1. Quanto é 5 + 3?</p>
66
+ <label><input type="radio" name="mat1" value="errada"> 6</label><br>
67
+ <label><input type="radio" name="mat1" value="certa"> 8</label><br>
68
+ <label><input type="radio" name="mat1" value="errada"> 9</label><br>
69
+ <label><input type="radio" name="mat1" value="errada"> Não sei</label>
70
+ </div>
71
+
72
+ <div class="pergunta">
73
+ <p>2. Qual número vem depois do 12?</p>
74
+ <label><input type="radio" name="mat2" value="certa"> 13</label><br>
75
+ <label><input type="radio" name="mat2" value="errada"> 11</label><br>
76
+ <label><input type="radio" name="mat2" value="errada"> 15</label><br>
77
+ <label><input type="radio" name="mat2" value="errada"> Não sei</label>
78
+ </div>
79
+
80
+ <div class="pergunta">
81
+ <p>3. Quanto é 10 - 4?</p>
82
+ <label><input type="radio" name="mat3" value="certa"> 6</label><br>
83
+ <label><input type="radio" name="mat3" value="errada"> 5</label><br>
84
+ <label><input type="radio" name="mat3" value="errada"> 7</label><br>
85
+ <label><input type="radio" name="mat3" value="errada"> Não sei</label>
86
+ </div>
87
+
88
+ </form>
89
+
90
+ <button id="btnCodigo" onclick="verificarCodigo()">Mostrar Resultado (com código)</button>
91
+
92
+ <div id="resultado" class="resultado oculto"></div>
93
+
94
+ <script>
95
+ function verificarCodigo() {
96
+ const codigo = prompt("Digite o código para ver as notas:");
97
+ if (codigo === "MIkael") {
98
+ corrigir();
99
+ } else {
100
+ alert("Código incorreto! Você não pode ver as notas.");
101
+ }
102
+ }
103
+
104
+ function corrigir() {
105
+ const respostasPort = [
106
+ document.querySelector('input[name="port1"]:checked')?.value,
107
+ document.querySelector('input[name="port2"]:checked')?.value,
108
+ document.querySelector('input[name="port3"]:checked')?.value
109
+ ];
110
+ const respostasMat = [
111
+ document.querySelector('input[name="mat1"]:checked')?.value,
112
+ document.querySelector('input[name="mat2"]:checked')?.value,
113
+ document.querySelector('input[name="mat3"]:checked')?.value
114
+ ];
115
+
116
+ if (respostasPort.includes(undefined) || respostasMat.includes(undefined)) {
117
+ alert("Responda todas as perguntas ou marque 'Não sei'.");
118
+ return;
119
+ }
120
+
121
+ let pontosPort = 0;
122
+ for (const r of respostasPort) {
123
+ if (r === "certa") pontosPort++;
124
+ }
125
+
126
+ let pontosMat = 0;
127
+ for (const r of respostasMat) {
128
+ if (r === "certa") pontosMat++;
129
+ }
130
+
131
+ const passouPort = pontosPort > 2;
132
+ const passouMat = pontosMat > 2;
133
+
134
+ const nome = document.getElementById("nomeAluno").value;
135
+
136
+ const res = document.getElementById("resultado");
137
+ res.classList.remove("oculto");
138
+
139
+ res.innerHTML = `
140
+ <strong>Nome:</strong> ${nome}<br>
141
+ Nota de Língua Portuguesa: ${pontosPort} / 3<br>
142
+ Nota de Matemática: ${pontosMat} / 3<br>
143
+ Resultado final: <span style="color: ${passouPort && passouMat ? 'green' : 'red'};">
144
+ ${passouPort && passouMat ? 'APROVADO' : 'REPROVADO'}
145
+ </span><br>
146
+ <strong>Código de acesso:</strong> MIkael
147
+ `;
148
+ }
149
+ </script>
150
+
151
+ <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/grhdud" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
152
+ </html>
prompts.txt ADDED
File without changes