📱Add mobile support

This commit is contained in:
Victor Bodinaud
2025-03-18 11:26:37 +01:00
parent d70edb9f2e
commit dd78fcafd9
7 changed files with 391 additions and 226 deletions

View File

@@ -1,41 +1,47 @@
<?php
$url = "";
//get the image url
if (isset( $_GET['i'] ) ) {
$url = $_GET[ 'i' ];
} else {
exit();
}
$url = "";
//we can only do jpg and png here
if (strpos($url, ".jpg") && strpos($url, ".jpeg") && strpos($url, ".png") != true ) {
echo strpos($url, ".jpg");
echo "Unsupported file type :(";
exit();
}
//get the image url
if (isset($_GET['i'])) {
$url = $_GET['i'];
} else {
exit();
}
//image needs to start with http
if (substr( $url, 0, 4 ) != "http") {
echo("Image failed :(");
exit();
}
//we can only do jpg and png here
if (strpos($url, ".jpg") && strpos($url, ".jpeg") && strpos($url, ".png") != true) {
echo strpos($url, ".jpg");
echo "Unsupported file type :(";
exit();
}
//image needs to start with http
if (substr($url, 0, 4) != "http") {
echo ("Image failed :(");
exit();
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 2.0//EN">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<html>
<head>
<title>FrogFind Image Viewer</title>
</head>
<body">
<small><a href="<?php echo $_SERVER['HTTP_REFERER'] ?>">< Back to previous page</a></small>
<html>
<head>
<title>FrogFind Image Viewer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
</head>
<body style="margin: 5px; padding: 0;">
<small><a href="<?php echo $_SERVER['HTTP_REFERER'] ?>">
< Back to previous page</a></small>
<p><small><b>Viewing image:</b> <?php echo $url ?></small></p>
<img src="/image_compressed.php?i=<?php echo $url; ?>">
<br><br>
<small><a href="<?php echo $_SERVER['HTTP_REFERER'] ?>">< Back to previous page</a></small>
</body>
</html>
<small><a href="<?php echo $_SERVER['HTTP_REFERER'] ?>">
< Back to previous page</a></small>
</body>
</html>