Merge branch 'stage7_user_web_interface_prototype' of https://git.is.ulstu.ru/ns.potapov/PIbd-21_CourseWork_Polyclinic_BeSick into stage7_user_web_interface_prototype
This commit is contained in:
commit
0401065c37
29
Polyclinic/PolyclinicWebView/Views/Home/Course.cshtml
Normal file
29
Polyclinic/PolyclinicWebView/Views/Home/Course.cshtml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
@*
|
||||||
|
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
||||||
|
*@
|
||||||
|
@{
|
||||||
|
ViewData["Title"] = "Редактировать курс";
|
||||||
|
}
|
||||||
|
<form class="d-flex flex-column">
|
||||||
|
<div class="row mb-5">
|
||||||
|
<div class="col-4">Количество дней:</div>
|
||||||
|
<div class="col-8"><input type="number" id="daysCount" name="daysCount" /></div>
|
||||||
|
</div>
|
||||||
|
<div class="row mb-5">
|
||||||
|
<div class="col-4">Количество препарата в день:</div>
|
||||||
|
<div class="col-8"><input type="number" id="pillsPerDay" name="pillsPerDay" /></div>
|
||||||
|
</div>
|
||||||
|
<div class="row mb-5">
|
||||||
|
<div class="col-4">Коментарий:</div>
|
||||||
|
<div class="col-8"><textarea id="comment" name="comment"></textarea></div>
|
||||||
|
</div>
|
||||||
|
<div class="row mb-5">
|
||||||
|
<div class="col-4">Рецепт:</div>
|
||||||
|
<div class="col-8">
|
||||||
|
<select id="recipeId" name="recipeId">
|
||||||
|
<option>Выберите рецепт</option>
|
||||||
|
<option value="0">Какой-то рецепт</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
Loading…
Reference in New Issue
Block a user