@{ ViewData["Title"] = "Delete Account"; ViewData["PageIcon"] = "bi-trash3-fill"; var companyName = ViewBag.CompanyName as string ?? "your company"; var userCount = (int)(ViewBag.UserCount ?? 0); var jobCount = (int)(ViewBag.JobCount ?? 0); var quoteCount = (int)(ViewBag.QuoteCount ?? 0); var customerCount = (int)(ViewBag.CustomerCount ?? 0); var invoiceCount = (int)(ViewBag.InvoiceCount ?? 0); }
@if (TempData["Error"] != null) { }

This action is permanent and cannot be undone.

What happens when you delete your account

Deleting your account will permanently deactivate access to @companyName and mark the following data for removal:

  • @userCount user account@(userCount != 1 ? "s" : "") will be deactivated — no one will be able to log in.
  • @jobCount job@(jobCount != 1 ? "s" : ""), @quoteCount quote@(quoteCount != 1 ? "s" : ""), and @invoiceCount invoice@(invoiceCount != 1 ? "s" : "") will be marked deleted.
  • @customerCount customer record@(customerCount != 1 ? "s" : "") will be marked deleted.
  • All inventory, equipment, maintenance, and other company data will be marked deleted.
You will lose access to your data immediately. Once your account is deleted you will no longer be able to export, download, or access any of your data. All records are subject to purge and cannot be recovered after deletion. If you need a data export, please do so before deleting your account.
Consider these alternatives first
  • Pause instead of delete — Contact support to temporarily suspend your account.
  • Cancel your subscription — Stop future billing without deleting your data.
  • Export your data first — Go to Reports to export jobs, customers, invoices, and more before proceeding.
Confirm account deletion
@Html.AntiForgeryToken()
This field is case-sensitive. You must type it in all capitals.
Cancel — Keep My Account
@section Scripts { }