2024-09-16 11:49:09 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Shortened URL - sxbin</title>
|
2024-09-16 13:54:54 +02:00
|
|
|
<meta property="og:title" content="Shortened URL - sxbin">
|
2024-09-16 11:49:09 +02:00
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:url" content="{{ request.url }}">
|
2024-09-16 13:54:54 +02:00
|
|
|
<meta property="og:description" content="Shortened URL {% if is_private %}(Password Protected){% endif %} | Created by: {{ username }} | Date: {{ created_at.strftime('%Y-%m-%d %H:%M:%S') }}">
|
2024-09-16 11:49:09 +02:00
|
|
|
<meta property="og:site_name" content="sxbin">
|
|
|
|
<meta property="theme-color" content="#4CAF50">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Shortened URL</h1>
|
2024-09-16 13:54:54 +02:00
|
|
|
<p>Original URL: {{ long_url }}</p>
|
2024-09-16 11:49:09 +02:00
|
|
|
<p>Created by: {{ username }}</p>
|
2024-09-16 13:54:54 +02:00
|
|
|
<p>Date: {{ created_at.strftime('%Y-%m-%d %H:%M:%S') }}</p>
|
|
|
|
{% if is_private %}
|
|
|
|
<p>This URL is password protected.</p>
|
|
|
|
{% endif %}
|
|
|
|
<a href="{{ url_for('redirect_vanity', vanity=vanity) }}">Access the URL</a>
|
2024-09-16 11:49:09 +02:00
|
|
|
</body>
|
|
|
|
</html>
|