1234567891011121314151617181920212223242526272829303132333435 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <script async src="https://cdn.ampproject.org/v0.js"></script>
- <title>Shorty - shorten URL</title>
- <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
- <script type="application/ld+json">
- {
- "@context": "http://schema.org",
- "@type": "NewsArticle",
- "headline": "Open-source framework for publishing content",
- "datePublished": "2015-10-07T12:02:41Z",
- "image": [
- "logo.jpg"
- ]
- }
- </script>
- <link rel="stylesheet" href="https://newcss.net/lite.css">
- <link rel="stylesheet" href="https://newcss.net/theme/night.css">
- </head>
- <body>
- <form action="/s">
- Link to shorten:
- <input type="text" name="link">
- <input type="submit" value="Shorten">
- </form>
- <br/>
- <form action="/d">
- Link to decode:
- <input type="text" name="link">
- <input type="submit" value="Decode">
- </form>
- </body>
- </html>
|