seed vehicle trims catalog

This commit is contained in:
VPN SaaS Dev
2026-05-12 04:44:19 +09:00
parent f7a3b8be54
commit b5012ec6e7
9 changed files with 335 additions and 21 deletions

View File

@@ -266,10 +266,28 @@
Модель
<select name="model" id="modelSelect" required></select>
</label>
<label>
Комплектация
<select name="trim" id="trimSelect"></select>
</label>
<div class="catalog-preview" id="catalogPreview">
<strong>Выбери модель</strong>
<span>Покажем кузов, топливо, привод и годы выпуска.</span>
</div>
<label>
Год
<input name="year" type="number" min="1900" max="2100" />
</label>
<label>
Тип топлива
<select name="fuel_type" id="fuelTypeSelect">
<option value="">Авто</option>
<option value="gasoline">Бензин</option>
<option value="diesel">Дизель</option>
<option value="hybrid">Гибрид</option>
<option value="electric">Электро</option>
</select>
</label>
<button type="submit">Добавить авто</button>
</form>
</section>