diff options
Diffstat (limited to 'src/templates/edit.php')
| -rw-r--r-- | src/templates/edit.php | 19 |
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> |
