Initial commit
This commit is contained in:
26
frontend/templates/dashboard.html
Normal file
26
frontend/templates/dashboard.html
Normal file
@@ -0,0 +1,26 @@
|
||||
{% 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 d’animation</option>
|
||||
<option value="2179">Séries d’animation / 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 %}
|
||||
Reference in New Issue
Block a user