flask_crud_app/templates/delete.html

20 lines
416 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">
<div align="center">
<a href="/create">Add</a> |
<a href="/view">View</a>
</div>
<form action='' method="post">
Do you want to delete the item?
<input type = "submit" value="Confirm">
<a href='/view'>Cancel</a>
</form>
</body>
</html>