DAS_2023_1/antonov_dmitry_lab_5/templates/index.html

25 lines
856 B
HTML
Raw Normal View History

2023-12-04 21:25:59 +04:00
<!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">
2023-12-05 13:01:36 +04:00
<title>Умножение матриц</title>
2023-12-04 21:25:59 +04:00
</head>
<body>
2023-12-05 13:01:36 +04:00
<h1>Умножение матриц</h1>
2023-12-04 21:25:59 +04:00
<form action="/multiply" method="post">
2023-12-05 13:01:36 +04:00
<label for="matrix_a">Размер матриц:</label>
2023-12-04 21:25:59 +04:00
<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>