-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget.html
More file actions
35 lines (31 loc) · 1.25 KB
/
Copy pathget.html
File metadata and controls
35 lines (31 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>UniceNotes</title>
<meta charset="utf-8" />
<meta name="description" content="Votre ENT. Dans votre poche.">
<meta name="author" content="hugofnm">
<link rel="icon" href="favicon.png" type="image/png" />
<link href="https://fonts.cdnfonts.com/css/bahnschrift" rel="stylesheet">
</head>
<body>
<div style="display: flex; justify-content: center; align-items: center; height: 100vh;">
<a href="https://apps.apple.com/fr/app/unicenotes/id1668992337">
<img src="assets\img\appstore.png" style="width: 200px;">
</a>
<a href="https://play.google.com/store/apps/details?id=fr.hugofnm.unicenotes">
<img src="assets\img\googleplay.png" style="width: 200px;">
</a>
</div>
</body>
<script>
// if os is ios redirect to appstore
if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/iPod/i)) {
window.location = "https://apps.apple.com/fr/app/unicenotes/id1668992337";
}
// if os is android redirect to playstore
else if (navigator.userAgent.match(/Android/i)) {
window.location = "https://play.google.com/store/apps/details?id=fr.hugofnm.unicenotes";
}
</script>
</html>