diff --git a/contact-form.js b/contact-form.js new file mode 100644 index 0000000..0654058 --- /dev/null +++ b/contact-form.js @@ -0,0 +1,27 @@ +// contact-form.js + +document.addEventListener('DOMContentLoaded', function() { + const contactForm = document.getElementById('contactForm'); + + if (contactForm) { + contactForm.addEventListener('submit', function(event) { + event.preventDefault(); // Prevent the form from submitting the traditional way + + // Generate a random ticket number + const ticketNumber = Math.floor(Math.random() * 1000000); // Generates a random number between 0 and 999999 + + // Retrieve form values + const name = encodeURIComponent(document.getElementById('name').value); + const email = encodeURIComponent(document.getElementById('email').value); + const message = encodeURIComponent(document.getElementById('message').value); + + // Construct the mailto link + const subject = `Support Ticket #${ticketNumber}`; + const body = `Name: ${name}%0AEmail: ${email}%0AMessage:%0A${message}`; + const mailtoLink = `mailto:info@photofuel.tech?subject=${subject}&body=${body}`; + + // Open the default mail client + window.location.href = mailtoLink; + }); + } +}); diff --git a/contact.html b/contact.html new file mode 100644 index 0000000..660a180 --- /dev/null +++ b/contact.html @@ -0,0 +1,41 @@ + + +
+ + ++ Have you ever felt that a new game you bought lacks soul, as if it was + made without love or passion? Or maybe you've noticed that the tools + you use seem to watch your every move, leaving you feeling monitored + and uneasy. Even after paying for a subscription, do you feel like you + don’t truly own the software you rely on? We’ve felt the same way, and + we’re here to change that. We are an international group of + programmers, united by a common goal: to reshape the world of + technology. With team members from Switzerland, Norway, and beyond, + we're a diverse collective of students and developers who believe in + the power of open-source software. Open source isn’t just a + development model for us; it’s a commitment to transparency, + community, and user freedom. Inspired by the Free Software Foundation + (FSF) and the Free Software Supporters Europe (FSSE), we strive to + create software that empowers users, respects their privacy, and + fosters collaboration. In a world where much of the software feels + corporate and detached, we’re dedicated to creating tools and games + with passion and care—products you can trust and truly own. Join us in + reshaping the digital landscape, where technology serves you, not the + other way around. +
+ + ++ In a world dominated by soulless, profit-driven software, we felt a + deep dissatisfaction with the state of the tech industry. Many of us + have experienced the frustration of using tools that feel invasive, + with constant surveillance and restrictions. We've all been + there—buying a game that lacks passion, subscribing to software that + we never truly own, or feeling trapped in ecosystems designed to + profit off our data. These experiences led us to a simple, yet + profound question: What if technology could be different? +
+ ++ In 2023, a group of fresh-faced students from Switzerland, Norway, and + beyond came together with a shared dream. United by our love for + coding and our belief in the power of open-source software, we set out + to challenge the status quo. We were inspired by the pioneers of the + Free Software Movement (FSM) and the values they championed: + transparency, freedom, and community. +
+ ++ By 2024, our team had grown, and so had our ambitions. We began + working on our first projects, focusing on creating games and tools + that were not just free to use, but free to modify, share, and + improve. Our mission was clear: to bring open-source alternatives to + the mainstream, offering users a genuine choice in a market saturated + with proprietary solutions. +
+ ++ As our community grew, so did our impact. In 2025, we launched several + successful projects, each embodying our core values of openness and + collaboration. We forged partnerships with like-minded organizations + and began to make waves in the tech world. Our tools and games started + gaining recognition for their quality, security, and the freedom they + offered users. +
+ ++ Looking ahead, we see a future where open-source software is the norm, + not the exception. We envision a world where users are empowered to + take control of their digital lives, where technology serves the needs + of people, not corporations. Our goal is to continue expanding our + portfolio of open-source projects, making them accessible to everyone, + regardless of their background or technical expertise. +
+ ++ Our vision is not just about the products we create; it's about the + culture we want to build. We are committed to fostering a global + community of developers, gamers, and tech enthusiasts who share our + passion for open source. Together, we believe we can create a more + just, equitable, and innovative digital world. +
+ ++ Join us on this journey as we work to bring open-source tools and + games to the market for everyone to enjoy. Let's reshape the future of + technology, one line of code at a time. +
+