diff options
Diffstat (limited to 'src/templates/add.php')
| -rw-r--r-- | src/templates/add.php | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/src/templates/add.php b/src/templates/add.php new file mode 100644 index 0000000..a44c4d3 --- /dev/null +++ b/src/templates/add.php @@ -0,0 +1,16 @@ +<!doctype html> +<html lang="en"> +    <head> +        <meta charset="utf-8"> +        <meta name="viewport" content="width=device-width, initial-scale=1"> +        <title>Bookmarks</title> +    </head> +    <body> +        <form action="/add" method="POST"> +            <input type="text" name="url" maxlength="512" autofocus><br> +            <input type="text" name="title" maxlength="256" ><br> +            <input type="text" name="tag" maxlength="8" ><br> +            <button type="submit">Add</button>  +        </form> +    </body> +</html>  | 
