aboutsummaryrefslogtreecommitdiffstats
path: root/www/form-test.html
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov@twistea.su>2025-04-01 21:37:43 +0300
committerjustanothercatgirl <sotov@twistea.su>2025-04-01 21:54:17 +0300
commita81c5876f2058605cc5f15525591acde3ae16a80 (patch)
tree37edb55c4733288c9e58a0da960a6e3918a12279 /www/form-test.html
parent08403b616f9dad83cb1204eec83ba1252e3eb129 (diff)
Integrated STE into html generation & cleaned up code
Diffstat (limited to 'www/form-test.html')
-rw-r--r--www/form-test.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/www/form-test.html b/www/form-test.html
new file mode 100644
index 0000000..79eb7b1
--- /dev/null
+++ b/www/form-test.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>