17 lines
526 B
HTML
17 lines
526 B
HTML
{% load i18n %}
|
|
|
|
<form method="get" class="d-flex gap-2 align-items-center">
|
|
<div class="input-group flex-grow-1" style="max-width: 300px;">
|
|
|
|
<input type="text" name="search"
|
|
class="form-control border-start-0"
|
|
placeholder="{% trans 'Search...' %}"
|
|
value="{{ search_query }}"
|
|
aria-label="{% trans 'Search' %}">
|
|
<button class="btn btn-outline-primary" type="submit">
|
|
<i class="fas fa-search"></i>
|
|
</button>
|
|
</div>
|
|
</form>
|
|
|