25 lines
813 B
Plaintext
25 lines
813 B
Plaintext
|
|
@{
|
|
ViewData["Title"] = "ListOfMembers";
|
|
}
|
|
|
|
<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> |