26 lines
974 B
HTML

{% extends "base.html" %}
{% block title %} Youtube 2 Podcast RSS {% endblock %}
{% block pageHeader %} Youtube 2 Podcast RSS {% endblock %}
{% block content %}
<p>Input youtube URL:</p>
<form action="#" method="post">
<p><input type="text" name="ytlink" placeholder="https://www.youtube.com/watch?v=b63l5MLuQcQ" /> </p>
{% if not isValidUrl %}
<label style="color: red">URL is invalid!</label>
{% endif %}
<p><input class="btn btn-primary" type="submit" value="submit" /> </p>
<input type="submit" value="generate-feed" name="generate-feed" />
{#<input type="submit" value="open-podcast" name="open-podcast" />#}
{#<a href="{{ url_for('serve_static',path = 'podcast.xml')}}">Open Podcast Feed</a>#}
<a class="btn btn-primary" href="{{ url_for('serve_static',path = 'podcast.xml')}}">Open Podcast Feed</a>
{#<button name="open-podcast" href="./static/podcast.xml"></button>#}
</form>
{% endblock %}
<!--{%for _ in range(10) %}-->
<!-- <p>x</p>-->
<!--{% endfor %}-->