Customer delete confirm
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Delete Customer</title>
</head>
<body>
<h2>Delete Customer</h2>
<p>Are you sure you want to delete this customer?</p>
<form action="CustomerCRUDServlet" method="post">
<input type="hidden" name="action" value="delete">
<input type="hidden" name="ssn" value="${param.ssn}">
<button type="submit">Yes, Delete</button>
</form>
<button onclick="window.history.back()">Cancel</button>
</body>
</html>