12345678910111213141516 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
- <title>Shortened URL Result</title>
- </head>
- <body>
- <div class="container">
- <h1>Shortened URL Result</h1>
- <p>Original URL: <a href="{{ original_url }}" target="_blank">{{ original_url }}</a></p>
- <p>Shortened URL: <a href="{{ short_url }}" target="_blank">{{ short_url }}</a></p>
- </div>
- </body>
- </html>
|