summaryrefslogtreecommitdiff
path: root/src/templates/confirm_deletion.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates/confirm_deletion.php')
-rw-r--r--src/templates/confirm_deletion.php19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/templates/confirm_deletion.php b/src/templates/confirm_deletion.php
index 06e133f..12c5cd1 100644
--- a/src/templates/confirm_deletion.php
+++ b/src/templates/confirm_deletion.php
@@ -4,13 +4,20 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Confirm - Bookmarks</title>
+ <link rel="shortcut icon" href="/images/favicon.png">
+ <link rel="stylesheet" href="/css/site.css">
</head>
<body>
- <a href="/">Back</a>
- <form action="/delete" method="POST">
- <input type="hidden" name="id" value="<?php echo $bookmark->id; ?>"/>
- <?php echo htmlentities($bookmark->url.' '.$bookmark->title.' '.$bookmark->tag); ?>
- <button type="submit">Delete</button>
- </form>
+ <section>
+ <h1>Bookmarks</h1>
+ <h2>Confirm Deletion</h2>
+ <a href="/">Back</a>
+ <form action="/delete" method="POST">
+ <input type="hidden" name="id" value="<?php echo $bookmark->id; ?>"/>
+ <?php echo htmlentities("$bookmark->url | $bookmark->title | $bookmark->tag"); ?>
+ <button type="submit">Delete</button>
+ </form>
+ <p>Copyright © 2021 David T. Sadler.</p>
+ </section>
</body>
</html>