Files
yt-mls/templates/downloader.html
Maximilian Wagner ddf249cfe0 Alpha status reached.
Downloads get run in their own threads which are queued. Downloads of single files as well as zips of playlists are possible. Interaction with db has shown no problems.
2023-08-02 17:44:37 +02:00

28 lines
767 B
HTML

{%- extends "base.html" %}
{% block content %}
{{ super() }}
<div class="container">
<div class="card" style="width: fit-content">
<ul class="list-group list-group-flush">
<li class="list-group-item">
<form method="POST">
{{ form.csrf_token }}
{{ form.url.label }} <br>
{{ form.url }}
{{ form.submit }}
</form>
</li>
</ul>
</div>
{% if form.errors %}
{{ form.errors['url'][0][:-1] + ', try again.' }}
{% endif %}
{% if not ytLink %}
Please enter a full, valid YouTube URL.
{% endif %}
</div>
{%- endblock %}