DAS_2023_1/antonov_dmitry_lab_5/templates/index.html
2023-12-05 13:01:36 +04:00

25 lines
856 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Умножение матриц</title>
</head>
<body>
<h1>Умножение матриц</h1>
<form action="/multiply" method="post">
<label for="matrix_a">Размер матриц:</label>
<input type="text" name="matrix_a" required><br>
<label for="operation_type">Как умножить:</label>
<select name="operation_type">
<option value="sequential">Последовательно</option>
<option value="parallel">Параллельно</option>
</select><br>
<button type="submit">Умножение матриц</button>
</form>
</body>
</html>