IIS_2023_1/kamyshov_danila_lab_6/templates/index.html
2023-12-06 13:47:44 +04:00

46 lines
2.1 KiB
HTML
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.

<!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>