HRConvert2/index.html
Justin Grimes 0fe93efdad
v3.2.4 - Misc cleanup.
-v3.2.4.
-Merge security related checks in file operations inside the error check code.
  -Try to make them all consistent. Move some log code to after the sanitization process in upload/download/delete.
-The log message 'Could not verify tokens!' will now only appear in logs if $Verbose is set in config.php.
-Fix missing translations in subtitles, subtitles labeled as models.
  -Was leftover copy-pasta.
-Add jpe to supported formats.
-I really want to rework PDFs soon. 
  -Want to add the ability to convert between any supported format using existing functions.
2023-04-15 01:05:19 -04:00

21 lines
No EOL
900 B
HTML

<!DOCTYPE html>
<html>
<title>HRConvert2 | HRConvert2 Authentication</title>
<body>
<div id="outer" align="center"><h1>Configuring HRConvert2 ...</h1>
<div id="inner" style="position:absolute; top:50%; left:50%; height:10em; margin-top:-5em; margin-right:5em;"><strong>Please wait . . .</strong></div>
</div>
<script type="text/javascript">
// Set the URL below to the page the user is sent to if their screensize is UNDER the specified number of pixels.
if (screen.width <= 699) { document.location = "/HRProprietary/HRConvert2/convertCore.php"; }
// / Set the URL below to the page the user is sent to if their screensize is OVER the specified number of pixels.
if (screen.width >= 700) { document.location = "/HRProprietary/HRConvert2/convertCore.php"; }
</script>
<meta id="IfNothingHappens" http-equiv="refresh" content="5"; url="/HRProprietary/HRConvert2/convertCore.php" >
</body>
</html>