diff options
Diffstat (limited to 'src/templates/create.php')
| -rw-r--r-- | src/templates/create.php | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/src/templates/create.php b/src/templates/create.php index 37004ff..21df9a8 100644 --- a/src/templates/create.php +++ b/src/templates/create.php @@ -4,12 +4,19 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Add - 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="/store" method="POST"> - <?php require_once('form_fields.php'); ?> - <button type="submit">Add</button> - </form> + <section> + <h1>Bookmarks</h1> + <h2>Add</h2> + <a href="/">Back</a> + <form action="/store" method="POST"> + <?php require_once('form_fields.php'); ?> + <button type="submit">Add</button> + </form> + <p>Copyright © 2021 David T. Sadler.</p> + </section> </body> </html> |
