DAS_2023_1/antonov_dmitry_lab_5/templates/index.html

25 lines
830 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">
<title>Matrix Multiplication</title>
</head>
<body>
<h1>Matrix Multiplication</h1>
<form action="/multiply" method="post">
<label for="matrix_a">Matrix размер:</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>