Terms.Law Employee Onboarding Bundle
Back to Hub

Employee Onboarding Documents

Generate California-compliant employee onboarding documents. Select the documents you need and customize for your business.

Employee Details

Enter information for the onboarding documents:

Select Documents:

Offer Letter

Employment offer with compensation, start date, at-will status

At-Will Acknowledgment

Confirms at-will employment status

Timekeeping Policy

Recording work hours, overtime approval, breaks

Meal & Rest Break Policy

California meal and rest break requirements

Mileage Reimbursement Policy

For field/mobile workers - expense reimbursement

Confidentiality & IP Agreement

Protection of company information and IP assignment

'; const blob = new Blob([bundle], {type: 'text/html'}); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = `Employee-Onboarding-Bundle-${i.employeeName.replace(/\s+/g, '-')}.html`; a.click(); URL.revokeObjectURL(url); } document.querySelectorAll('input, select').forEach(el => el.addEventListener('input', generatePreview)); document.getElementById('startDate').valueAsDate = new Date(); updateTabs(); generatePreview();