forked from GaMoCh/ACG-Trabalho_Grafos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 1.72 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/vis/4.21.0/vis.min.css"
/>
<link rel="stylesheet" href="style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis/4.21.0/vis.min.js"></script>
<script defer src="script.js"></script>
<title>Final Project: Graphs</title>
</head>
<body>
<header id="header">
<h1 id="title">Final Project: Graphs</h1>
</header>
<main id="main">
<section id="container"></section>
</main>
<footer id="footer">
<form id="form">
<section class="form-section">
<label for="teachers">Teachers amount</label>
</section>
<section class="form-section">
<input
type="number"
id="teachers"
name="teachers"
min="1"
value="1"
/>
</section>
<section class="form-section">
<input
type="file"
id="file1"
name="file1"
accept="text/plain"
required
/>
<label for="file1" class="input-file">Students</label>
</section>
<section class="form-section">
<input
type="file"
id="file2"
name="file2"
accept="text/plain"
required
/>
<label for="file2" class="input-file">Dissimilarity Matrix</label>
</section>
<section class="form-section">
<button type="submit">Build</button>
</section>
</form>
</footer>
</body>
</html>