// PastTemplates.js // Source of truth for the current user's saved waiver templates. // In production this file will be replaced by an API endpoint that returns // the same JSON array from a MySQL query, e.g.: // GET /api/templates/past → Content-Type: application/json // // Schema per object: // id {string} unique key, e.g. "past-1" // name {string} display name shown on the template card // description {string} short subtitle shown on the template card // content {string} HTML body loaded into the waiver editor var PAST_TEMPLATES = [ { "id": "past-1", "name": "Summer Soccer Camp 2024", "description": "Used 3× · Liability waiver + photo release. Last used Jun 2024.", "content": "
I, the undersigned parent or legal guardian of the participant named above, hereby grant permission for my child to participate in the Summer Soccer Camp program operated by Lakewood Athletics.
I understand and acknowledge that participation in soccer camp activities involves inherent risks including, but not limited to, physical injury, sprains, fractures, and other sports-related injuries. I voluntarily assume all such risks on behalf of my child.
I hereby release, discharge, and hold harmless Lakewood Athletics, its coaches, staff, volunteers, and agents from any and all claims, demands, or causes of action arising out of or related to my child’s participation in this program.
I grant permission for photos and videos taken during the program to be used for promotional and educational purposes by Lakewood Athletics.
By signing below, I confirm that I have read and understand this waiver and agree to its terms.
" }, { "id": "past-2", "name": "Lakewood Field Trip — Zoo", "description": "Used 1× · Permission slip + medical info. Last used Mar 2024.", "content": "I grant permission for my child to attend the Lakewood Field Trip to the Zoo. I understand this trip will take place on school grounds and at the designated venue.
My child does not have any medical conditions that would prevent participation, or I have attached a separate medical form with relevant information.
In case of emergency, please contact me immediately. I authorize the camp staff to seek emergency medical treatment for my child if I cannot be reached.
" }, { "id": "past-3", "name": "Spring Lacrosse Tryouts", "description": "Used 2× · Liability only. Last used Feb 2024.", "content": "I hereby grant permission for my child to participate in Spring Lacrosse Tryouts. I understand that lacrosse is a contact sport and I voluntarily assume all risks of injury associated with participation.
I release Lakewood Athletics and its staff from any liability arising from my child’s participation in this activity.
" }, { "id": "past-4", "name": "Overnight Camp Waiver 2023", "description": "Used 5× · Full waiver, medical, emergency contacts. Last used Aug 2023.", "content": "I, the parent or legal guardian, grant permission for my child to attend Overnight Camp and consent to all activities involved.
I authorize camp staff to administer first aid and seek emergency medical treatment as necessary. Please note any allergies or medical conditions on the attached form.
Primary contact: Primary Contact Name*Full name ✕ Phone: Primary Contact Phone*(555) 123-4567 ✕
Secondary contact: Secondary Contact NameFull name ✕ Phone: Secondary Contact Phone(555) 123-4567 ✕
I voluntarily assume all risks and release the organization from liability for injuries sustained during participation in overnight camp activities.
" } ];