34 lines
930 B
Plaintext
34 lines
930 B
Plaintext
@{
|
||
ViewData["Title"] = "Поток";
|
||
}
|
||
|
||
<h4 class="fw-bold">Создание потока</h4>
|
||
|
||
<div id="error-div-shell" class="error-div-shell">
|
||
<div>
|
||
<p id="error-p" class="error-p mb-2"></p>
|
||
</div>
|
||
</div>
|
||
|
||
<p class="mb-0">Название:</p>
|
||
<input type="text" id="name-input" class="form-control mb-2" />
|
||
<p class="mb-0">Курс:</p>
|
||
<input type="number" min="1" id="number-input" class="form-control mb-2"/>
|
||
<button id="create-button" class="button-primary text-button">
|
||
Создать
|
||
</button>
|
||
|
||
<p class="mb-0">Группы:</p>
|
||
<div class="scrollable-table">
|
||
<table class="table table-bordered">
|
||
<thead class="thead-light">
|
||
<tr>
|
||
<th>Название</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody id="scrollable-table__tbody">
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
|
||
<script src="~/js/stream/stream-create.js" asp-append-version="true"></script> |