-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfakemail.php
More file actions
28 lines (25 loc) · 729 Bytes
/
fakemail.php
File metadata and controls
28 lines (25 loc) · 729 Bytes
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
<?php include ('header.php'); ?>
<div style="z-index:1 ;" class="fixed-top nav2 text-center nav-green pr-1"> Boite de réception<span
class="float-right"><img
src="img/newmsg.svg"
width="15"></span></div>
<main class="text-center" style="margin-top: 10vh">
</main>
<?php include('footer.php'); ?>
<script src="js/countdown.js"></script>
<script>
function getMail() {
$.get("php/getmail.php", function (data) {
$("main").html(data);
});
}
$(function () {
getMail();
setInterval(function () {
getMail()
}, 10000);
});
</script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>