summaryrefslogtreecommitdiff
path: root/view/html/recipe-confirm-deletion.html
AgeCommit message (Collapse)Author
2024-10-24view: Order ingredient summary by ingredient namexengineering
This makes it easier to write a shopping list for the required ingredients.
2024-03-24view: Fix position of header tagxengineering
It should be inside the body tag but used to be before it.
2024-03-23view: Do not change button colorxengineering
Design changes should be avoided for now since simple.css cares about the CSS part of Ceres.
2024-03-10view: Remove nested anchor and button elementsxengineering
There is the need to add buttons to the recipe server which act like a anchor tag (link). This can be achieved by nesting anchor and button tag. The problem is that if the user cycles through the elements of the page with the 'tab' key such a button is handled as two overlapping elements instead of one. This commit solves the issue by using buttons with the attribute `onclick="window.location.href='<url>';`.
2024-03-03view: Add template 'nav'xengineering
The <nav> section is the same on every page. This new template reduces code duplication.
2024-03-03view: Provide recipe deletionxengineering