{"id":20820843,"url":"https://github.com/webdad/formbuilder","last_synced_at":"2026-04-02T01:58:14.215Z","repository":{"id":152505382,"uuid":"98397832","full_name":"WebDaD/formbuilder","owner":"WebDaD","description":"Can create forms via admintool, saves in db (in php, mysql, angular, bootstrap, material)","archived":false,"fork":false,"pushed_at":"2017-08-07T06:22:39.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-18T16:39:47.007Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/WebDaD.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-07-26T08:17:39.000Z","updated_at":"2017-07-26T08:17:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"9ac0e516-84c6-4dd6-a1ae-b847b8fed1ba","html_url":"https://github.com/WebDaD/formbuilder","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebDaD%2Fformbuilder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebDaD%2Fformbuilder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebDaD%2Fformbuilder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebDaD%2Fformbuilder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WebDaD","download_url":"https://codeload.github.com/WebDaD/formbuilder/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243167091,"owners_count":20247033,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-17T22:10:30.344Z","updated_at":"2025-12-26T05:13:57.353Z","avatar_url":"https://github.com/WebDaD.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# FormBuilder in php, mysql, angular, bootstrap, material\r\n\r\n* Can create forms via admintool, saves in db\r\n* View submissions, aggregations, ...\r\n* Edit submission data (eg hidden fields)\r\n* Every Form field can be hidden, required, validated\r\n* Every Form field can be conditional to one or more other fields\r\n* Every Form field can be filled automaticelly from other fields\r\n* Supports all the form types (text, number, password, select, radiobuttons, ...)\r\n* and some special ones: signature, url, email\r\n* allow users to printout form.\r\n* scan the form and using ocr import the results!\r\n* Validation live and via Ajax to the Server\r\n* google nocaptcha support for every form\r\n* multilanguage admintool\r\n* multilanguage forms\r\n* custom form header, footer\r\n* access restriction: everyone, ip (list or range), has the link (using a unique hash)\r\n\r\n\r\n\r\n## PHP / API\r\n\r\n* api.php \u003c-- /api/*\r\n\t* connects to database\r\n\t* GET, POST, PUT, DELETE via paths\r\n\t* returns JSON only\r\n* form.php\r\n\t* ?slug=formslug\u0026language=de\r\n\t* shortened by htaccess\r\n\t* displays form via database, renders bootstraped html w/ jquery\r\n\r\n## DATABASE\r\n\r\n* languages\r\n\t* id\r\n\t* name\r\n\t* key\r\n* forms\r\n\t* id\r\n\t* slug\r\n\t* header\r\n* form_languages\r\n\t* form_id\r\n\t* language_id\r\n\t* name\r\n\t* thankyou\r\n\t* introduction\r\n\t* email\r\n* form_fields\r\n\t* id\r\n\t* form_id\r\n\t* slug\r\n\t* type\r\n\t* client_val_type\r\n\t* client_val_args\r\n\t* server_val_type\r\n\t* server_val_args\r\n\t* order\r\n\t* required\r\n\t* hidden\r\n* form_field_conditions\r\n\t* id\r\n\t* field_id\r\n\t* conditional_field_id\r\n\t* type\r\n\t* parameter\r\n* form_field_defaults\r\n\t* id\r\n\t* field_id\r\n\t* type\r\n\t* value\r\n* form_field_languages\r\n\t* form_field_id\r\n\t* language_id\r\n\t* label\r\n\t* client_val_error\r\n\t* server_val_error\r\n\t* placeholder\r\n* submissions\r\n\t* id\r\n\t* form_id\r\n\t* timestamp\r\n\t* remoteip\r\n\t* language_id\r\n* submission_values\r\n\t* submission_id\r\n\t* form_field_id\r\n\t* value\r\n\r\n\r\n## AdminTool\r\n* create forms\r\n* add / remove / edit fields\r\n* view submissions\r\n\t* as column selectable table (filter, sort)\r\n\t* as detail-view\r\n* export submissions (save settings!)\r\n\t* json\r\n\t* csv\r\n\t* xml\r\n* view aggregations\r\n* export aggregations\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebdad%2Fformbuilder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebdad%2Fformbuilder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebdad%2Fformbuilder/lists"}