@model PowderCoating.Application.DTOs.Kiosk.SubmitKioskTermsDto @{ Layout = "~/Views/Shared/_KioskLayout.cshtml"; ViewData["Title"] = "Terms & Consent"; var token = ViewBag.SessionToken as Guid? ?? Guid.Empty; bool isInPerson = ViewBag.IsInPerson as bool? ?? false; bool quoteFirst = !string.Equals(ViewBag.KioskIntakeOutput as string, "Job", StringComparison.OrdinalIgnoreCase); }

Terms & Consent

Please read and agree to the following before we proceed.

@Html.AntiForgeryToken() @* Terms scroll box *@
Work Authorization & Liability Waiver

By signing below (or checking the box), you authorize @(ViewBag.CompanyName ?? "this shop") to perform the powder coating services described in your intake form.

You acknowledge that you are the owner of the items submitted for coating, or you have authority to authorize work on them. You release the shop from liability for pre-existing damage, hidden defects, or items left unclaimed after 30 days.

@if (quoteFirst) {

Final pricing is subject to a formal quote. Work will not begin until you approve the quoted amount. Payment is due upon pickup unless otherwise agreed in writing.

} else {

A team member will review your intake and reach out about pricing before work begins. Payment is due upon pickup unless otherwise agreed in writing.

}

You agree to comply with all pickup and payment terms provided by the shop.

@* SMS consent — separate checkbox per plan *@
@* Terms agreement *@
@* Signature pad — in-person only *@ @if (isInPerson) {
Please sign above before continuing.
}
Back
@if (isInPerson) { @section Scripts { } }