web-dev/labs/lab-6/app/templates/index.html
2026-03-13 13:14:58 +03:00

40 lines
1.9 KiB
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 content %}
<div class="hero-section">
<div class="m-auto w-100">
<h1 class="hero-title mb-4">Образовательный портал</h1>
<p class="hero-desc">
Мы создаём и продвигаем технологии онлайн-образования как эффективный
образовательный инструмент, который будет способствовать повышению
доступности и качества образования.
</p>
<div class="hero-search">
<form action="{{ url_for('courses.index') }}" class="row align-items-end g-3">
<div class="col-sm-12 col-md-6">
<label for="course-name">Название курса</label>
<input autocomplete="off" type="text" class="form-control" id="course-name" name="name" placeholder="Введите название...">
</div>
<div class="col-sm-12 col-md-4">
<label for="course-category">Категория</label>
<select class="form-select" id="course-category" name="category_ids">
<option value="">Все категории</option>
{% for category in categories %}
<option value="{{ category.id }}">{{ category.name }}</option>
{% endfor %}
</select>
</div>
<div class="col-sm-12 col-md-2">
<button type="submit" class="btn-primary-red w-100" style="height:44px; justify-content:center; display:flex; align-items:center;">
<i class="fas fa-search me-1"></i>Найти
</button>
</div>
</form>
</div>
</div>
</div>
{% endblock %}