diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2021-11-03 22:14:26 +0000 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2021-11-03 22:14:26 +0000 |
| commit | 745664a1bf36cce13f3439698275b0b147efde3b (patch) | |
| tree | bbd4d48943e8bf63a91d610f6c0c1afcdf707fc5 /src/templates/create.php | |
| parent | 5add8d18e6f984e0e3296a7e092a6a1ef061668f (diff) | |
Improve HTML and CSS
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> |
