prepare("INSERT INTO onboarding_templates (msp_id, name, description) VALUES (?, ?, ?)"); $stmt->execute([$msp_id, $name, $description]); $template_id = db()->lastInsertId(); header("Location: edit_template.php?id=$template_id"); exit; } } $stmt = db()->prepare("SELECT * FROM onboarding_templates WHERE msp_id = ? ORDER BY created_at DESC"); $stmt->execute([$msp_id]); $templates = $stmt->fetchAll(); include 'header.php'; ?>
Create multi-page onboarding flows for your customers.
You haven't created any onboarding templates yet. Click the button above to start.