commit a71769eaadf7f0870802b7a5512d10b50f64609a
Author: root <root@hub.scroll.pub> Date: 2024-12-28 11:32:22 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..5d7350f --- /dev/null +++ b/body.html @@ -0,0 +1,51 @@ +<header> + <h1>Decide Amor</h1> + <p>Should you continue your online relationship with a Spanish man who has strong sexual desires? Let’s find out.</p> +</header> +<main> + <section id="quiz"> + <h2>Relationship Quiz</h2> + <form id="relationshipQuiz"> + <div class="question"> + <label for="q1">How often do you communicate?</label> + <select id="q1"> + <option value="1">Daily</option> + <option value="2">Weekly</option> + <option value="3">Monthly</option> + </select> + </div> + <div class="question"> + <label for="q2">Do you feel emotionally connected?</label> + <select id="q2"> + <option value="1">Yes</option> + <option value="2">Sometimes</option> + <option value="3">No</option> + </select> + </div> + <div class="question"> + <label for="q3">Are his sexual desires aligned with yours?</label> + <select id="q3"> + <option value="1">Yes</option> + <option value="2">Somewhat</option> + <option value="3">No</option> + </select> + </div> + <button type="submit">Calculate</button> + </form> + <div id="result" class="hidden"> + <h3>Your Result</h3> + <p id="resultText"></p> + </div> + </section> + <section id="tips"> + <h2>Tips for Online Relationships</h2> + <ul> + <li>Communicate openly about your feelings and boundaries.</li> + <li>Ensure mutual respect and understanding.</li> + <li>Consider meeting in person to assess compatibility.</li> + </ul> + </section> +</main> +<footer> + <p>Made with ❤️ to help you decide.</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..0f0cca2 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://decideamor.scroll.pub +metaTags +editButton /edit.html +title Should I Continue My Online Relationship? +style.css +body.html +script.js \ No newline at end of file diff --git a/prompt.json b/prompt.json new file mode 100644 index 0000000..6ade48e --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "f58764ba-019b-4cf9-828a-5dd36fc062ec", + "object": "chat.completion", + "created": 1735385525, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\ndecideamor.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://decideamor.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Should I Continue My Online Relationship?\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>Decide Amor</h1>\n <p>Should you continue your online relationship with a Spanish man who has strong sexual desires? Let’s find out.</p>\n</header>\n<main>\n <section id=\"quiz\">\n <h2>Relationship Quiz</h2>\n <form id=\"relationshipQuiz\">\n <div class=\"question\">\n <label for=\"q1\">How often do you communicate?</label>\n <select id=\"q1\">\n <option value=\"1\">Daily</option>\n <option value=\"2\">Weekly</option>\n <option value=\"3\">Monthly</option>\n </select>\n </div>\n <div class=\"question\">\n <label for=\"q2\">Do you feel emotionally connected?</label>\n <select id=\"q2\">\n <option value=\"1\">Yes</option>\n <option value=\"2\">Sometimes</option>\n <option value=\"3\">No</option>\n </select>\n </div>\n <div class=\"question\">\n <label for=\"q3\">Are his sexual desires aligned with yours?</label>\n <select id=\"q3\">\n <option value=\"1\">Yes</option>\n <option value=\"2\">Somewhat</option>\n <option value=\"3\">No</option>\n </select>\n </div>\n <button type=\"submit\">Calculate</button>\n </form>\n <div id=\"result\" class=\"hidden\">\n <h3>Your Result</h3>\n <p id=\"resultText\"></p>\n </div>\n </section>\n <section id=\"tips\">\n <h2>Tips for Online Relationships</h2>\n <ul>\n <li>Communicate openly about your feelings and boundaries.</li>\n <li>Ensure mutual respect and understanding.</li>\n <li>Consider meeting in person to assess compatibility.</li>\n </ul>\n </section>\n</main>\n<footer>\n <p>Made with ❤️ to help you decide.</p>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n line-height: 1.6;\n margin: 0;\n padding: 0;\n background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);\n color: #333;\n}\n\nheader {\n text-align: center;\n padding: 2rem;\n background: rgba(255, 255, 255, 0.8);\n margin-bottom: 2rem;\n}\n\nh1 {\n font-size: 2.5rem;\n color: #ff6f61;\n}\n\nmain {\n padding: 1rem;\n}\n\nsection {\n background: rgba(255, 255, 255, 0.9);\n padding: 1.5rem;\n margin-bottom: 1.5rem;\n border-radius: 10px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.question {\n margin-bottom: 1rem;\n}\n\nlabel {\n display: block;\n margin-bottom: 0.5rem;\n font-weight: bold;\n}\n\nselect, button {\n width: 100%;\n padding: 0.5rem;\n border: 1px solid #ccc;\n border-radius: 5px;\n font-size: 1rem;\n}\n\nbutton {\n background: #ff6f61;\n color: white;\n border: none;\n cursor: pointer;\n}\n\nbutton:hover {\n background: #ff3b2f;\n}\n\n#result {\n margin-top: 1rem;\n padding: 1rem;\n background: #e0f7fa;\n border-radius: 5px;\n}\n\n.hidden {\n display: none;\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background: rgba(255, 255, 255, 0.8);\n margin-top: 2rem;\n}\n\n@media (min-width: 768px) {\n main {\n max-width: 600px;\n margin: 0 auto;\n }\n}\n---script.js---\ndocument.getElementById('relationshipQuiz').addEventListener('submit', function (e) {\n e.preventDefault();\n const q1 = parseInt(document.getElementById('q1').value);\n const q2 = parseInt(document.getElementById('q2').value);\n const q3 = parseInt(document.getElementById('q3').value);\n const total = q1 + q2 + q3;\n\n let resultText = '';\n if (total <= 4) {\n resultText = 'You might want to reconsider this relationship. It seems there are significant mismatches.';\n } else if (total <= 7) {\n resultText = 'There are some positive aspects, but also areas that need improvement. Proceed with caution.';\n } else {\n resultText = 'This relationship seems promising! Keep nurturing it.';\n }\n\n document.getElementById('resultText').textContent = resultText;\n document.getElementById('result').classList.remove('hidden');\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 267, + "completion_tokens": 1175, + "total_tokens": 1442, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 267 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..cf4daa8 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# decideamor.scroll.pub +Website generated by DeepSeek from prompt: I want a website that helps me decide if I should continue online relationship with a Spanish man who has strong sexual desires. It should have some numerical tools. Be creative. \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..0bcdb6c --- /dev/null +++ b/script.js @@ -0,0 +1,19 @@ +document.getElementById('relationshipQuiz').addEventListener('submit', function (e) { + e.preventDefault(); + const q1 = parseInt(document.getElementById('q1').value); + const q2 = parseInt(document.getElementById('q2').value); + const q3 = parseInt(document.getElementById('q3').value); + const total = q1 + q2 + q3; + + let resultText = ''; + if (total <= 4) { + resultText = 'You might want to reconsider this relationship. It seems there are significant mismatches.'; + } else if (total <= 7) { + resultText = 'There are some positive aspects, but also areas that need improvement. Proceed with caution.'; + } else { + resultText = 'This relationship seems promising! Keep nurturing it.'; + } + + document.getElementById('resultText').textContent = resultText; + document.getElementById('result').classList.remove('hidden'); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..e78b58c --- /dev/null +++ b/style.css @@ -0,0 +1,86 @@ +body { + font-family: 'Arial', sans-serif; + line-height: 1.6; + margin: 0; + padding: 0; + background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%); + color: #333; +} + +header { + text-align: center; + padding: 2rem; + background: rgba(255, 255, 255, 0.8); + margin-bottom: 2rem; +} + +h1 { + font-size: 2.5rem; + color: #ff6f61; +} + +main { + padding: 1rem; +} + +section { + background: rgba(255, 255, 255, 0.9); + padding: 1.5rem; + margin-bottom: 1.5rem; + border-radius: 10px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +.question { + margin-bottom: 1rem; +} + +label { + display: block; + margin-bottom: 0.5rem; + font-weight: bold; +} + +select, button { + width: 100%; + padding: 0.5rem; + border: 1px solid #ccc; + border-radius: 5px; + font-size: 1rem; +} + +button { + background: #ff6f61; + color: white; + border: none; + cursor: pointer; +} + +button:hover { + background: #ff3b2f; +} + +#result { + margin-top: 1rem; + padding: 1rem; + background: #e0f7fa; + border-radius: 5px; +} + +.hidden { + display: none; +} + +footer { + text-align: center; + padding: 1rem; + background: rgba(255, 255, 255, 0.8); + margin-top: 2rem; +} + +@media (min-width: 768px) { + main { + max-width: 600px; + margin: 0 auto; + } +} \ No newline at end of file