diff options
author | justanothercatgirl <sotov@twistea.su> | 2025-03-27 12:52:11 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2025-03-27 12:52:11 +0300 |
commit | 82742d5d13dc7b0691a79c79f8e62782fcb16e10 (patch) | |
tree | 48d077549ed667d2a54171b82eb7608cb8edaf3e /www/form.html | |
parent | 8542ec17d3df989f3df9fd03af7a447bf730dc13 (diff) |
Doing SQL (work in progress)
Diffstat (limited to 'www/form.html')
-rw-r--r-- | www/form.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/www/form.html b/www/form.html new file mode 100644 index 0000000..79eb7b1 --- /dev/null +++ b/www/form.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> + +<html> + <head><meta charset="utf-8"></head> + <body> + <form action="/getargs?a=b&c=d&" method="get" class="form-example" target="tgt"> + <div> + <label>The url ot be shortened:</label> + <input type="text" name="url" required/> + </div> + <div> + <label>Try to allocate at this addess (optional):</label> + <input type="text" name="try"/> + </div> + <input name="format" value="htlm" hidden="true"/> + <input type="submit" value="Test arguments" /> + </form> + + <iframe name="tgt"/> + </body> +</html> |