{"id":21891509,"url":"https://github.com/otherwa/stunning-disco","last_synced_at":"2026-04-15T06:34:19.442Z","repository":{"id":41855487,"uuid":"435518846","full_name":"Otherwa/stunning-disco","owner":"Otherwa","description":"Registration Site for students (Events) A webform, web form or HTML form on a web page allows a user to enter data that is sent to a server for processing.","archived":false,"fork":false,"pushed_at":"2022-09-30T07:20:26.000Z","size":24474,"stargazers_count":2,"open_issues_count":9,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-22T03:14:49.367Z","etag":null,"topics":["css-animations","css3","firebse","html","html-css-javascript","html5","json","json-api","none","webdevelopment"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Otherwa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null}},"created_at":"2021-12-06T14:02:17.000Z","updated_at":"2022-10-06T20:04:43.000Z","dependencies_parsed_at":"2023-01-18T11:16:46.832Z","dependency_job_id":null,"html_url":"https://github.com/Otherwa/stunning-disco","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Otherwa/stunning-disco","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Otherwa%2Fstunning-disco","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Otherwa%2Fstunning-disco/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Otherwa%2Fstunning-disco/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Otherwa%2Fstunning-disco/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Otherwa","download_url":"https://codeload.github.com/Otherwa/stunning-disco/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Otherwa%2Fstunning-disco/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31830147,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"online","status_checked_at":"2026-04-15T02:00:06.175Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css-animations","css3","firebse","html","html-css-javascript","html5","json","json-api","none","webdevelopment"],"created_at":"2024-11-28T12:38:31.229Z","updated_at":"2026-04-15T06:34:19.409Z","avatar_url":"https://github.com/Otherwa.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Stunning-disco\n\n![download](https://user-images.githubusercontent.com/67428572/163595229-3f5ec050-823c-4a38-b7d7-a494af5dd962.png)\n![download](https://user-images.githubusercontent.com/67428572/163595248-3e01628b-29e9-4af8-9728-88d41eab00a9.png)\n![download](https://user-images.githubusercontent.com/67428572/163595272-5fc832ea-436c-4ef4-acae-241241f0d9bc.png)\n\n\n# Prequisite\n\n- `Firebase account.` [documentation](https://firebase.google.com/docs?authuser=0\u0026hl=en)\n- `basic JS.`\n- `Google fonts API.` [documentation](https://fonts.google.com/knowledge)\n- `Google Analaytics API.` [documentation](https://developers.google.com/analytics)\n- `Scroll JS.` [documentation](https://scrollrevealjs.org/)\n\n## In a nutshell\n![images](https://user-images.githubusercontent.com/67428572/163597389-bb0c7c56-91e5-4599-ac12-ee59247a1217.jpg)\n\nand\n\n![all-might-youre-next](https://user-images.githubusercontent.com/67428572/163597542-d518abed-bbc9-4e13-b785-7cf2418eed51.gif)\n\n\n# Introduction\n\n- Interfacing form data by storing it in JSON format in `LiveDataBase` [NoSQL Database DOM oriented]//Firebase\n- [For Reference] (https://youtu.be/zx2YoBMfflM)\n-  Static page can be rendered as per the person whose going to implement this\n\n### Database bridge\n## Basic Snippet for \n`Collecting Form Data`\n```\n// Your web app's Firebase configuration\nconst mainConfig = {\n  apiKey: \"\",\n  authDomain: \"\",\n  databaseURL: \"\",\n  projectId: \"\",\n  storageBucket: \"\",\n  messagingSenderId: \"\",\n  appId: \"\"\n};\n\n// Initialize Firebase\nfirebase.initializeApp(mainConfig);\n\n// Refernece contactInfo collections\nlet contactInfo = firebase.database().ref(\"Inventrix_Regs\");\n\n// Listen for a submit\ndocument.querySelector(\".contact-form\").addEventListener(\"submit\", submitForm);\n\nfunction submitForm(e) {\n  e.preventDefault();\n\n  //   Get input Values\n  let name = document.getElementById(\" \").value;\n  let email = \n  let message = \n  let roll = \n  let phone = \n  var rate;\n //all your validation code\n  }\n  else{\n  saveContactInfo(name, email, message,roll,phone,rate);\n  //err code\n  document.querySelector(\".contact-form\").reset();\n  }\n}\n\n// Save infos to Firebase\nfunction saveContactInfo(name, email, message,roll,phone,rate) {\n  let newContactInfo = contactInfo.push();\n  newContactInfo.set({\n    department: roll,\n    name: name,\n    email: email,\n    message: message,\n    phone: phone,\n    exited: rate,\n  });\n\n}\n```\n\n# Overview\n\n![sys_flow](https://user-images.githubusercontent.com/67428572/145678966-fb2afd11-97ba-4ef2-b298-5e503a30ada5.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fotherwa%2Fstunning-disco","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fotherwa%2Fstunning-disco","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fotherwa%2Fstunning-disco/lists"}