rss2/templates/restore_urls.html
2026-01-13 13:39:51 +01:00

16 lines
No EOL
517 B
HTML

{% extends "base.html" %}
{% block title %}Importar Fuentes URL{% endblock %}
{% block content %}
<h1>Importar Fuentes URL</h1>
<div class="card">
<form method="post" enctype="multipart/form-data" action="{{ url_for('restore_urls') }}">
<label>Archivo CSV:</label>
<input type="file" name="file" required>
<button class="btn" style="margin-top:15px;">Importar</button>
<a href="{{ url_for('dashboard') }}" class="btn btn-secondary">Cancelar</a>
</form>
</div>
{% endblock %}