a simple url shortener in Go (check it out at qurl.org)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
888 B

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>qurl.org</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  7. <link rel="stylesheet" media="screen" href="qurl.css">
  8. </head>
  9. <body>
  10. <div id="c">
  11. qurl.org is a simple url shortening service, in the same vein as
  12. <a href="https://bit.ly">bit.ly</a> and
  13. <a href="https://tinyurl.com">tinyurl.com</a>.
  14. qurl.org is <a href="http://binarythought.com/qurl/LICENSE">open source</a>,
  15. it's code is <a href="https://binarythought.com/fossils/qurl/">freely available</a>
  16. and has an <a href="api/index.html">easy to use API</a>.
  17. <form method="post" action="submit.html">
  18. <input type="text" id="u" name="url" placeholder="https://qurl.org" />
  19. <input type="submit" id="s" value="shorten" />
  20. </form>
  21. </div>
  22. </body>
  23. </html>