diff options
Diffstat (limited to 'page/create.html')
-rw-r--r-- | page/create.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/page/create.html b/page/create.html new file mode 100644 index 0000000..33fbe71 --- /dev/null +++ b/page/create.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html> + +<head> + <title>trkt</title> +</head> + +<body> + <p> create link</p> + + <form action="/c" method="POST"> + <label for="url">Url:</label> + <input required type="url" id="url" name="url"> + + <br /> + + <label for="id">ID (optional):</label> + <input type="text" id="id" name="id"> + + <br /> + + <input type="submit" value="Submit"> + </form> +</body> + +</html> |