IIS_2023_1/kamyshov_danila_lab_6/templates/index.html

46 lines
2.1 KiB
HTML
Raw Normal View History

2023-12-06 13:43:48 +04:00
<!DOCTYPE html>
<html>
<head>
<title>Предсказание оценки учащихся</title>
</head>
<body>
<h1>Предсказание оценки учащихся</h1>
<form method="post" action="/predict">
<label for="Pstatus">Статус сожительства родителей (A, T, T):</label>
<input type="text" name="Pstatus" id="Pstatus" required><br>
<label for="guardian">Опекун (mother, father, mother):</label>
<input type="text" name="guardian" id="guardian" required><br>
<label for="internet">Наличие интернета (no, yes, yes):</label>
<input type="text" name="internet" id="internet" required><br>
<label for="romantic">В романтических отношениях (no, no, no):</label>
<input type="text" name="romantic" id="romantic" required><br>
<label for="famrel">Отношения в семье (4, 5, 4):</label>
<input type="number" name="famrel" id="famrel" required><br>
<label for="freetime">Свободное время после школы (3, 3, 3):</label>
<input type="number" name="freetime" id="freetime" required><br>
<label for="goout">Время с друзьями (4, 3, 2):</label>
<input type="number" name="goout" id="goout" required><br>
<label for="Dalc">Потребление алкоголя в рабочие дни (1, 1, 2):</label>
<input type="number" name="Dalc" id="Dalc" required><br>
<label for="Walc">Потребление алкоголя в выходные (1, 1, 3):</label>
<input type="number" name="Walc" id="Walc" required><br>
<label for="health">Состояние здоровья (3, 3, 3):</label>
<input type="number" name="health" id="health" required><br>
<label for="absences">Пропуски занятий (6, 4, 10):</label>
<input type="number" name="absences" id="absences" required><br>
<input type="submit" value="Предсказать оценку">
</form>
</body>
</html>