🏡 index : old_projects/url_shortener.git

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/static/style.css">
<title>7800.io: URL Shortener</title> 
</head>
<body>
    <h1>URL Shortener</h1>
    <main>
        <div id="ui">
            <p>Shorten a URL</p>
            <form action="/" method="post">
                <input type="hidden" name="content_type" value="Url">
                <input type="text" name="content" placeholder="URL" class="text">
                <input type="submit" value="Shorten" class="button">
            </form>
        </div>
    </main>
</body>
</html>