Files
ygg-service/frontend/templates/dashboard.html
2025-11-11 01:48:45 +01:00

27 lines
781 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends 'base.html' %}
{% block title %}Tableau de bord{% endblock %}
{% block content %}
<form id="search-form" action="/search" method="GET">
<label>Catégorie</label>
<select name="category_id">
<option value="2178">Films danimation</option>
<option value="2179">Séries danimation / Mangas</option>
<option value="2181">Documentaires</option>
<option value="2182">Émissions TV</option>
<option value="2183">Films</option>
<option value="2184">Séries</option>
</select>
<label>Recherche</label>
<input type="text" name="query" required>
<button type="submit">Rechercher</button>
</form>
<div id="results">
<!-- Les résultats de recherche seront injectés ici -->
</div>
{% endblock %}