summaryrefslogtreecommitdiff
path: root/src/templates/edit.php
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2021-11-03 22:14:26 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2021-11-03 22:14:26 +0000
commit745664a1bf36cce13f3439698275b0b147efde3b (patch)
treebbd4d48943e8bf63a91d610f6c0c1afcdf707fc5 /src/templates/edit.php
parent5add8d18e6f984e0e3296a7e092a6a1ef061668f (diff)
Improve HTML and CSS
Diffstat (limited to 'src/templates/edit.php')
-rw-r--r--src/templates/edit.php19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/templates/edit.php b/src/templates/edit.php
index b462e7e..100cd0e 100644
--- a/src/templates/edit.php
+++ b/src/templates/edit.php
@@ -4,13 +4,20 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Edit - 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="/update" method="POST">
- <input type="hidden" name="id" value="<?php echo $bookmark->id; ?>"/>
- <?php require_once('form_fields.php'); ?>
- <button type="submit">Update</button>
- </form>
+ <section>
+ <h1>Bookmarks</h1>
+ <h2>Edit</h2>
+ <a href="/">Back</a>
+ <form action="/update" method="POST">
+ <input type="hidden" name="id" value="<?php echo $bookmark->id; ?>"/>
+ <?php require_once('form_fields.php'); ?>
+ <button type="submit">Update</button>
+ </form>
+ <p>Copyright © 2021 David T. Sadler.</p>
+ </section>
</body>
</html>