mirror of
https://git.ikl.sh/132ikl/liteshort.git
synced 2023-08-10 21:13:04 +03:00
42 lines
1.5 KiB
HTML
42 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ config.site_name }}</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css">
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
<div class="form">
|
|
<h2>{{ config.site_name }}</h2>
|
|
<form class="pure-form">
|
|
<p>
|
|
<input name="long" type="url" placeholder="Long URL">
|
|
</p>
|
|
<p>
|
|
<input name="short" type="text" placeholder="Custom link (optional)">
|
|
</p>
|
|
<p>
|
|
<button type="submit" class="pure-button pure-button-primary" formmethod="post">Shorten</button>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
{% for category, message in messages %}
|
|
{% if category == 'success' %}
|
|
<div class="success">
|
|
✓ Shortlink successfully generated! Available at <a href="{{ message }}">{{ message }}</a>
|
|
</div>
|
|
{% elif category == 'error' %}
|
|
<div class="error">
|
|
✖ {{ message }}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
</body>
|
|
</html> |