-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<script src="js/jquery-3.5.0.min.js"></script>
<script src="https://canvasjs.com/assets/script/jquery.canvasjs.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.bundle.min.js" charset="utf-8"></script>
<title>Prognozer</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-tagsinput.css">
<link rel="stylesheet" href="css/master.css">
<script src="js/bootstrap-tagsinput.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<form class="form-inline">
<input type="text" value="" data-role="tagsinput" placeholder="Unesi grad" id="tags" class="form-control">
<button type="button" class="btn btn-primary" onclick="posalji()" name="button">Prikazi</button>
</form>
<div id="chartContainer" style="height: 300px; width: 100%;"></div>
<table id="table" class="table">
<thead class="thead-dark">
<tr>
<th>Vreme merenja</th>
<th>Temp</th>
<th>Max</th>
<th>Min</th>
<th>Pritisak</th>
<th>Vlaznost</th>
</tr>
</thead>
<tbody id="data">
</tbody>
</table>
</body>
</html>