25 lines
837 B
Plaintext
25 lines
837 B
Plaintext
@{
|
|
ViewData["Title"] = "CreateCar";
|
|
}
|
|
|
|
<form method="post">
|
|
<div class="form-group">
|
|
<label class="u-label u-text-custom-color-1 u-label-1">Бренд машины</label>
|
|
</div>
|
|
<input type="text"
|
|
placeholder="Введите бренд машины"
|
|
name="brandCar"
|
|
class="form-control" />
|
|
<br>
|
|
<div class="form-group">
|
|
<label class="u-label u-text-custom-color-1 u-label-2">Модель</label>
|
|
</div>
|
|
<input type="text"
|
|
placeholder="Введите модель"
|
|
name="model"
|
|
class="form-control" />
|
|
<br>
|
|
<div class="u-container-layout u-container-layout-2">
|
|
<input type="submit" value="Сохранить" class="btn btn-outline-dark text-center d-flex justify-content-md-center" />
|
|
</div>
|
|
</form> |