-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
executable file
·40 lines (32 loc) · 1.19 KB
/
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
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Threehunt</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' />
<link href="assets/def.css" rel="stylesheet" />
<script type="text/javascript" src="assets/jquery.min.js"></script>
</head>
<?php
$url = "http://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$validURL = str_replace("&", "&", $url);
?>
<body class="site siteparent">
<div style="padding: 20px;margin-bottom:65px" id="tooppbar">
<table width="100%">
<tr>
<td align="center" valign="top">
<img style="height:220px" src="assets/logo.png" alt="">
</td>
</tr>
</table>
</div>
<div style="text-align: center;">
<a class="select" href="<?php echo $validURL; ?>rdp.php" class="button">RDP</a>
<a class="select" href="<?php echo $validURL; ?>vnc.php" class="button">VNC</a>
</div>
<div style="margin: 50px"></div>
</body>
</html>