diff options
Diffstat (limited to 'src/templates/create.php')
| -rw-r--r-- | src/templates/create.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/templates/create.php b/src/templates/create.php new file mode 100644 index 0000000..81ec7f8 --- /dev/null +++ b/src/templates/create.php @@ -0,0 +1,22 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>Add - Todo</title> + <link rel="shortcut icon" href="/images/favicon.png"> + <link rel="stylesheet" href="/css/site.css"> + </head> + <body> + <section> + <h1>Todo</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> |
