forked from interclip/interclip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
desktop.php
43 lines (33 loc) · 1.31 KB
/
desktop.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
33
34
35
36
37
38
39
40
41
42
43
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="./css/about.css">
<link rel="stylesheet" href="css/dark.css" media="(prefers-color-scheme: dark)">
<link rel="stylesheet" href="./css/desktop.css">
<html>
<head>
<title>Desktop | Interclip</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<div class="nav">
<?php
include_once "includes/menu.php";
include_once "includes/getos.php";
$user_agent = $_SERVER['HTTP_USER_AGENT'];
$user_os = getOS();
//header("Location: https://github.com/aperta-principium/Interclip-desktop/releases/latest/download/Interclip-0.1.1.AppImage");
?>
</div>
<br>
<body>
<div class="center">
<h1>Interclip on the desktop</h1>
<!-- Compiled and minified JavaScript -->
<script src='https://cdn.jsdelivr.net/gh/jquery/jquery/dist/jquery.min.js'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="js/desktop.js"></script>
<script>
download("<?php echo $user_os ?>")
</script>
</body>
</html>