34 lines
930 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@{
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>