🏡 index : old_projects/url_shortener.git

<!DOCTYPE html>
<html>
<head>
    <title>URL submission form</title>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="static/style.css" />
</head>
<body>
    <h1>URL shortener</h1>
    <form action="/" method="post">
        <input type="hidden" name="content_type" value="Url" />
        <label for="content">URL:</label>
        <input type="text" name="content" id="url" />
        <input type="submit" value="Shorten" />
    </form>
    <hr>
    <h1>Pastebin</h1>
    <form action="/" method="post">
        <input type="hidden" name="content_type" value="Pastebin" />
        <label for="content">Paste:</label>
        <textarea name="content" id="paste" rows="10" cols="50"></textarea>
        <input type="submit" value="Paste" />
    </form>
</body>
</html>