updated forms

This commit is contained in:
Keep Creating Online
2025-02-02 14:42:44 -05:00
parent 6e6132d882
commit e1391c418d
6 changed files with 45 additions and 11 deletions

View File

@@ -1,3 +1,9 @@
<!-- components/application-form.html
// https://bitvid.network?modal=application => open ???Modal
//
// Form:
// Responces:
-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>

View File

@@ -1,4 +1,6 @@
<!-- components/general-feedback-form.html --> <!-- componentsbug-fix-form.html
// https://bitvid.network?modal=bug => open bugFixModal
-->
<div <div
id="bugFixModal" id="bugFixModal"
class="fixed inset-0 z-50 hidden" class="fixed inset-0 z-50 hidden"
@@ -48,7 +50,12 @@
<div class="p-6"> <div class="p-6">
<div class="w-full" style="height: 80vh"> <div class="w-full" style="height: 80vh">
<iframe></iframe> <iframe
src=""
class="w-full h-full"
frameborder="0"
style="border: none; box-shadow: 0 0 2px rgba(0, 0, 0, 0.2)"
></iframe>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -1,4 +1,6 @@
<!-- components/content-appeals-form.html --> <!-- components/content-appeals-form.html
// https://bitvid.network?modal=appeals => open contentAppealsModal
-->
<div <div
id="contentAppealsModal" id="contentAppealsModal"
class="fixed inset-0 z-50 hidden" class="fixed inset-0 z-50 hidden"
@@ -48,7 +50,12 @@
<div class="p-6"> <div class="p-6">
<div class="w-full" style="height: 80vh"> <div class="w-full" style="height: 80vh">
<iframe></iframe> <iframe
src=""
class="w-full h-full"
frameborder="0"
style="border: none; box-shadow: 0 0 2px rgba(0, 0, 0, 0.2)"
></iframe>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -1,4 +1,6 @@
<!-- components/feature-request-form.html --> <!-- components/feature-request-form.html
// https://bitvid.network?modal=feature => open featureRequestModal
-->
<div <div
id="featureRequestModal" id="featureRequestModal"
class="fixed inset-0 z-50 hidden" class="fixed inset-0 z-50 hidden"
@@ -48,7 +50,12 @@
<div class="p-6"> <div class="p-6">
<div class="w-full" style="height: 80vh"> <div class="w-full" style="height: 80vh">
<iframe></iframe> <iframe
src="https://formstr.app/#/f/naddr1qvzqqqr4mqpzqkc2xxfvy4y2lfc46kp9v0zxj3tffhdn67wper4f3cdcntevf5zxqy08wumn8ghj7un9d3shjtnwdaehgu3wwa5hyetydejhgtn2wqhsqxmzd968v6tytarx2ct5w4ex2h6jv4ch2etnw305vmmjd5qxscwv?hideTitleImage=true"
class="w-full h-full"
frameborder="0"
style="border: none; box-shadow: 0 0 2px rgba(0, 0, 0, 0.2)"
></iframe>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -1,4 +1,6 @@
<!-- components/general-feedback-form.html --> <!-- components/content-appeals-form.html
// https://bitvid.network?modal=feedback => open generalFeedbackModal
-->
<div <div
id="generalFeedbackModal" id="generalFeedbackModal"
class="fixed inset-0 z-50 hidden" class="fixed inset-0 z-50 hidden"
@@ -50,7 +52,12 @@
<div class="p-6"> <div class="p-6">
<div class="w-full" style="height: 80vh"> <div class="w-full" style="height: 80vh">
<iframe></iframe> <iframe
src=""
class="w-full h-full"
frameborder="0"
style="border: none; box-shadow: 0 0 2px rgba(0, 0, 0, 0.2)"
></iframe>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -523,9 +523,9 @@
// //
// 8) Query param checks for the three new forms // 8) Query param checks for the three new forms
// //
// ?modal=feedback => open generalFeedbackModal // https://bitvid.network?modal=feedback => open generalFeedbackModal
// ?modal=feature => open featureRequestModal // https://bitvid.network?modal=feature => open featureRequestModal
// ?modal=bug => open bugFixModal // https://bitvid.network?modal=bug => open bugFixModal
// //
if (modalParam === "feedback") { if (modalParam === "feedback") {
const feedbackModal = document.getElementById("generalFeedbackModal"); const feedbackModal = document.getElementById("generalFeedbackModal");