-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 2.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!--
This "floyd-warshall-algorithm-calculator" is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Calculadora del algoritmo de Floyd Warshall</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
</head>
<body onload="clean()">
<div class="form-group">
<div class="form-group2">
<label for="text">Dimensiones de la matriz</label>
<input class="form-control form-control-sm" type="text" id="rowsAndCols" placeholder="" maxlength="2" size="2">
</div>
<div class="form-group2">
<input class="btn btn-primary" type="button" id="btnGenerar" value="Generar" onclick="doTask(1)">
<input class="btn btn-success" type="button" id="btnCalcular" value="Calcular" onclick="doTask(2)">
<input class="btn btn-danger" type="button" id="btnBorrar" value="Borrar" onclick="doTask(0)">
<input class="btn btn-danger" type="button" id="btnReset" value="Reset" onclick="doTask(3)">
</div>
<div id="lblError"></div>
</div>
<br>
<div id="container">
<div id="div_wMatrix" class="wMatrix"></div>
</div>
</body>
</html>