-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
32 lines (25 loc) · 828 Bytes
/
index.php
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
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Abonnement EDT</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div id="center-block">
<h1>Emploi du temps</h1>
<p></p>
<p>Dernière mise à jour effectuée le <b><?= date("d/m/Y à H:i",filemtime('edt.ics')) ?></b>.</p>
<div id="subscribe">
<input type="text" id="link" value="<?= $_SERVER['HTTP_HOST'] ?>/edt.ics">
<input id="copy" type="submit" data-clipboard-target="#link" value="Copier">
<div class="clear"></div>
</div>
<a href="https://github.com/Nic062/edt.git" target="_blank" title="" class="center">Projet Git</a>
</div>
<script src="assets/js/clipboard.min.js"></script>
<script>
new Clipboard('#copy');
</script>
</body>
</html>