25 lines
799 B
Plaintext
25 lines
799 B
Plaintext
|
|
|||
|
@{
|
|||
|
ViewData["Title"] = "ListOfMealPlans";
|
|||
|
}
|
|||
|
|
|||
|
<div class="text-center">
|
|||
|
<h1 class="display-4">Заказы</h1>
|
|||
|
</div>
|
|||
|
|
|||
|
|
|||
|
<form method="post">
|
|||
|
<div class="form-group">
|
|||
|
<label for="exampleFormControlSelect2">Доступный для выбора обед</label>
|
|||
|
<select multiple class="form-control" id="exampleFormControlSelect2">
|
|||
|
<option>1</option>
|
|||
|
<option>2</option>
|
|||
|
<option>3</option>
|
|||
|
<option>4</option>
|
|||
|
<option>5</option>
|
|||
|
</select>
|
|||
|
</div>
|
|||
|
<button type="button" class="btn btn-lg btn-primary" disabled>Word</button>
|
|||
|
<button type="button" class="btn btn-lg btn-primary" disabled>Excel</button>
|
|||
|
<button type="button" class="btn btn-secondary btn-lg" disabled>Отмена</button>
|
|||
|
</form>
|