Changes to coworkapply.scroll.pub

root
root
26 days ago
Initial commit
body.html
Changed around line 1
+
+

Join Our Coworking Space

+

Collaborate, innovate, and grow in our vibrant community.

+
+
+
+
+

Application Form

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ I have read and agree to the Code of Conduct
+
+
+
+
+
+
+
+

Code of Conduct

+
+

Our coworking space is built on respect, collaboration, and professionalism. By joining, you agree to:

+
    +
  • Respect all members and their workspace.
  • +
  • Maintain a clean and organized environment.
  • +
  • Use shared resources responsibly.
  • +
  • Engage in positive and constructive communication.
  • +
  • Adhere to all community guidelines and policies.
  • +
    +
    +
    +
    +
    +
    +

    Questions? Reach out to us at info@coworkapply.scroll.pub

    +
    index.scroll
    Changed around line 1
    + buildHtml
    + baseUrl https://coworkapply.scroll.pub
    + metaTags
    + editButton /edit.html
    + title Apply to Join Our Coworking Space
    + style.css
    + body.html
    + script.js
    readme.scroll
    Changed around line 1
    + # coworkapply.scroll.pub
    + Website generated by DeepSeek from prompt: I want a website that people who intend to join our coworking space can apply using. But we also need a certain level of KYC and they need to read and agree to our conde of conduct. Be creative
    script.js
    Changed around line 1
    + document.getElementById('applyForm').addEventListener('submit', function(event) {
    + event.preventDefault();
    +
    + const fullName = document.getElementById('fullName').value;
    + const email = document.getElementById('email').value;
    + const phone = document.getElementById('phone').value;
    + const idProof = document.getElementById('idProof').files[0];
    + const codeOfConduct = document.getElementById('codeOfConduct').checked;
    +
    + if (!fullName || !email || !phone || !idProof || !codeOfConduct) {
    + alert('Please fill out all fields and agree to the Code of Conduct.');
    + return;
    + }
    +
    + const formData = new FormData();
    + formData.append('fullName', fullName);
    + formData.append('email', email);
    + formData.append('phone', phone);
    + formData.append('idProof', idProof);
    +
    + // Simulate form submission
    + setTimeout(() => {
    + alert('Application submitted successfully! We will review your application and get back to you shortly.');
    + document.getElementById('applyForm').reset();
    + }, 1000);
    + });
    style.css
    Changed around line 1
    + :root {
    + --primary-color: #4a90e2;
    + --secondary-color: #333;
    + --background-color: #f9f9f9;
    + --border-color: #ddd;
    + --font-family: 'Arial', sans-serif;
    + }
    +
    + body {
    + font-family: var(--font-family);
    + line-height: 1.6;
    + margin: 0;
    + padding: 0;
    + background-color: var(--background-color);
    + color: var(--secondary-color);
    + }
    +
    + header {
    + background: var(--primary-color);
    + color: white;
    + padding: 2rem;
    + text-align: center;
    + }
    +
    + header h1 {
    + margin: 0;
    + font-size: 2.5rem;
    + }
    +
    + header p {
    + font-size: 1.2rem;
    + }
    +
    + main {
    + padding: 2rem;
    + max-width: 800px;
    + margin: 0 auto;
    + }
    +
    + section {
    + margin-bottom: 2rem;
    + }
    +
    + h2 {
    + color: var(--primary-color);
    + margin-bottom: 1rem;
    + }
    +
    + form {
    + display: flex;
    + flex-direction: column;
    + gap: 1rem;
    + }
    +
    + label {
    + font-weight: bold;
    + }
    +
    + input, button {
    + padding: 0.5rem;
    + border: 1px solid var(--border-color);
    + border-radius: 4px;
    + }
    +
    + button {
    + background: var(--primary-color);
    + color: white;
    + cursor: pointer;
    + border: none;
    + }
    +
    + button:hover {
    + background: darken(var(--primary-color), 10%);
    + }
    +
    + .conduct-content {
    + background: white;
    + padding: 1rem;
    + border: 1px solid var(--border-color);
    + border-radius: 4px;
    + }
    +
    + footer {
    + text-align: center;
    + padding: 1rem;
    + background: var(--secondary-color);
    + color: white;
    + }
    +
    + footer a {
    + color: var(--primary-color);
    + text-decoration: none;
    + }
    +
    + footer a:hover {
    + text-decoration: underline;
    + }
    +
    + @media (max-width: 600px) {
    + header h1 {
    + font-size: 2rem;
    + }
    +
    + header p {
    + font-size: 1rem;
    + }
    +
    + main {
    + padding: 1rem;
    + }
    + }