diff options
author | justanothercatgirl <sotov@twistea.su> | 2025-04-01 21:37:43 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2025-04-02 20:35:37 +0300 |
commit | 0eedaa2a2e5fc58789b268fdfc1b05e63dabc36b (patch) | |
tree | c11560a50274c209cb513eb9d00845280e0bb923 /www/index.html | |
parent | 08403b616f9dad83cb1204eec83ba1252e3eb129 (diff) |
Integrated STE into html generation & cleaned up code
Diffstat (limited to 'www/index.html')
-rw-r--r-- | www/index.html | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/www/index.html b/www/index.html index ed48fc5..973c32b 100644 --- a/www/index.html +++ b/www/index.html @@ -12,10 +12,9 @@ <title>JAC's link shortener</title> </head> <body> - <div> <h1>Just another link shortener</h1> <p>Try it out!</p> - <form action="/api/linkadd" target="result"> + <form action="/api/linkadd" target="result" accept-charset="utf-8"> <div> <label>URL:</label> <input type="url"name="url"required/> @@ -28,8 +27,7 @@ <input type="submit"value="Shorten URL!"/> </form> <h3>Result:</h3> - <iframe name="result"scrolling="no"/> - </div> + <iframe name="result"scrolling="no"></iframe> <p> For API documentation, go to <a href="/docs">documentation page</a></p> </body> </html> |