flask_crud_app/templates/delete.html

14 lines
316 B
HTML
Raw Normal View History

2025-01-29 05:27:19 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Delete Item</title>
</head>
<body align="center">
<form action='' method="post">
Do you want to delete the item?
<input type = "submit" value="Confirm">
<a href='/viewall'>Cancel</a>
2025-01-29 05:27:19 +00:00
</form>
</body>
</html>