A green-themed web app for recruiters to create and publish job application forms.
- Recruiter builder with editable job title, department, description, and custom questions.
- Add/remove questions and mark each question as required.
- Save draft or publish form.
- Published forms get a shareable unique link.
- Applicants submit from shared link and are redirected to a unique application identifier link.
Because this is a static app, you can run:
python3 -m http.server 8000Then open http://localhost:8000.
This repository now includes a GitHub Actions workflow that deploys the site publicly with GitHub Pages.
Push this repository to GitHub and ensure your default branch is main (or update the workflow trigger branch if needed).
In GitHub: Settings → Pages → Build and deployment, choose GitHub Actions as the source.
Push to main (or run the workflow manually from the Actions tab).
After the workflow succeeds, your app will be available at:
https://<your-github-username>.github.io/<repository-name>/
Note: This app stores data in
localStorage, so recruiter forms and application submissions are browser-local and not shared across different devices/users.