22 lines
698 B
HTML
22 lines
698 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Предсказание рейтинга игры</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Предсказание рейтинга игры</h1>
|
||
|
<form method="post" action="/predict">
|
||
|
<label for="genres">Жанр:</label>
|
||
|
<input type="text" name="genres" id="genres" required><br>
|
||
|
|
||
|
<label for="price">Цена:</label>
|
||
|
<input type="number" name="price" id="price" required><br>
|
||
|
|
||
|
<label for="release_date">Дата релиза:</label>
|
||
|
<input type="text" name="release_date" id="release_date" required><br>
|
||
|
|
||
|
<input type="submit" value="Предсказать рейтинг">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|