-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrainfall.php
More file actions
48 lines (48 loc) · 1.57 KB
/
rainfall.php
File metadata and controls
48 lines (48 loc) · 1.57 KB
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
<html lang="nl">
<head>
<title>Rainfall Map Asia - HeroCycles Weather App</title>
<link rel="icon" href="img/icon.png"/>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- <meta http-equiv="refresh" content="3"> -->
</head>
<body>
<div class="container">
<?php
include("inc/header.php");
?>
</div>
<div>
<img src="img/headerHC.jpg" alt="header image" class="headerimg"/>
</div>
<div class="login">
<?php require("inc/loginrequire.php"); ?>
</div>
<div id="delimiter"></div>
<div class="container">
<div class="delimiter"></div>
<div class="content" id="content">
<center>
<img src="img/load.gif" height="200px" width="200px" style="margin: 100px">
</center>
</div>
<script>
$(document).ready(function () {
$("#content").load("inc/openmap.php");
});
setInterval(function () {
$("#content").load("inc/openmap.php");
}, 60000);
</script>
<div class="delimiter"></div>
</div>
<center>
<div id="footer">
<div class="container">
<?php include ("inc/footer.php") ?>
</div>
</div>
</center>
</body>
</html>