Fill a PDF Form Online: Free, No Adobe Account Required
No account. No upload. Just the tool.
A government agency, your HR department, or your kid’s school sends you a PDF form. You’re supposed to fill it in and send it back. The frustrating path is: print it, fill by hand, sign, scan, email. The slightly less frustrating path is: install Adobe Acrobat Reader, create an Adobe account, navigate the upsell prompts, fill the form, save, send. The actually painless path is: open it in your browser, fill it, save, send.
Signegy fills PDF forms in your browser. The fields show up as inputs in a clean list. You type or click your way through them. You download the filled PDF. No Adobe, no account, no upload.
How It Works
- Drop your PDF onto the tool above. The tool reads the form and lists every fillable field by name.
- Fill the fields. Text fields take typed input; checkboxes toggle on click; dropdowns and radio groups give you select menus; multi-select option lists let you pick more than one option.
- Click “Download filled”. The output PDF has your values written into the actual form fields, so any reader (Acrobat, Preview, browsers, the recipient’s email PDF preview) shows them as filled.
The form parsing happens via pdf-lib’s PDFForm API. The library reads the field definitions out of the PDF’s AcroForm dictionary and lets us write back to them with proper type-aware methods.
What Field Types Work
Five types are supported, covering the vast majority of real-world fillable PDFs:
- Text — single-line and multi-line. Multi-line fields render as text areas; single-line as inputs.
- Checkbox — click to toggle. The field’s appearance state (“On” / “Off”) is set correctly.
- Dropdown — single-select menu populated from the field’s defined options.
- Radio group — exclusive selection within a group, presented as a single select for simplicity.
- Option list (multi-select) — multi-select menu where you can choose any combination.
Signature fields are intentionally not filled here. PDF signature fields are cryptographic and need either a hardware token, a stored signature certificate, or a different signing flow. Use the Sign tool for signatures — drop the filled form there after you’ve completed the other fields.
Less-common field types (button widgets, password inputs, barcode fields) are listed in the field panel but skipped on save. The other fields in the same form still save normally.
The “No Fields Detected” Problem
The most common failure mode isn’t a bug — it’s that the PDF you’re trying to fill isn’t actually a fillable form. The tool detects this and tells you up front: “This PDF doesn’t have any form fields.”
There are three common reasons for this:
Flattened forms. A fillable PDF that’s been “flattened” has had its form fields converted to drawn text and graphics. The fields are gone. Common when someone fills a form in Acrobat and saves it as flattened, or when a PDF is exported from a word processor without form fields enabled. The fix is to use the annotate tool to type or write over the page where the fields visually appear.
Scanned forms. A scanned image of a paper form has no digital form fields — just pixels. There’s nothing for the tool to read. Same fix: use annotate to draw on top.
Forms with non-standard widgets. Some PDFs use custom JavaScript-driven inputs that aren’t real AcroForm fields. These are rare, mostly seen in older corporate or government PDFs. They’ll show as “no fields” in our tool, and they often don’t work in non-Adobe readers either. The flatten + annotate workflow is the fallback.
Use Cases
Tax forms are the canonical case. The IRS publishes most forms as fillable PDFs (W-9, W-4, 1099 series, Schedule C, the 1040 itself). State tax authorities do the same. They want you to type, not write. Filling a 1040 in a browser, downloading the result, and emailing it to your accountant is a faster path than printing twice.
HR onboarding is the second case. Job offers, I-9 verification, direct-deposit setup forms, equity grant acknowledgments — all of these arrive as fillable PDFs. Fill in the browser, sign in the signing tool, email back.
Schools and youth programs use fillable PDFs for permission slips, registration, medical authorization, and pickup lists. The permission slip page covers the related signing workflow.
Anywhere a paper form would be used, a fillable PDF version usually exists. Fill it in your browser instead of printing it.
Pair With Sign for Signature Fields
Most fillable forms also need a signature at the end. Signegy splits these into two tools because the requirements are different — form filling is type-and-click, signing is draw-or-type a signature image plus a verifiable record. The natural workflow is: fill the form here, download, then drop the filled file into the Sign tool for the signature step. The original document never touches a server at any point.
If you specifically need to fill and sign a tax document, the tax signing guide walks through the end-to-end process. For HR-style forms, the offer letter signing guide covers the workflow.
Honest Limit: List View vs. Visual Overlay
Signegy’s filler shows fields in a list, grouped by field name, not overlaid on the actual page. This works perfectly for forms with descriptive field names (like “Taxpayer Name” or “Date of Birth”). It works less well for forms where the fields are named cryptically (field_117, tx2) and you can’t tell what’s what without seeing the page.
For now, the workaround is to open the PDF in any reader to see the form visually, then come back here to fill it. A visual-overlay version is on the roadmap; this v1 ships the underlying field-handling correctly so the eventual visual UI can build on it.
Frequently Asked Questions
Why doesn't my form show any fields?
Most likely the PDF is 'flattened' — the form fields were converted to images before you got the file. Common with scanned forms, exported-from-Word PDFs, and forms downloaded from websites that strip interactivity. For flattened forms, use the Annotate tool to type or write your responses on top of the page instead.
What field types are supported?
Text fields (single and multi-line), checkboxes, dropdowns, radio button groups, and multi-select option lists. Signature fields aren't filled here — use the Sign tool separately for those. Buttons and other rare field types are skipped on save.
Can I save a partially filled form and come back later?
Not yet. Each session is fresh — close the tab and your in-progress edits are gone. Fill, save, and re-open the saved file if you need to make further edits.
Do my entries actually get saved into the PDF, or are they just on top?
They're saved into the form's actual fields using pdf-lib's PDFForm API. The recipient's PDF reader will show the values as proper form values, not as overlaid text. They can also further edit the fields in their reader.
Is this legally valid for tax forms and government PDFs?
The fillable-PDF format is the same one tax authorities and government agencies use. The IRS, state DMVs, and most agencies accept fillable PDFs filled in any tool. For signature requirements, pair with the Sign tool.