phpmyadmin/index.php
Maurício Meneghini Fauth af6f448842
Remove JS media type from HTML script tags
The type attribute is unnecessary for JavaScript resources.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-06-16 20:39:27 -03:00

23 lines
505 B
PHP

<!doctype html>
<html lang="en">
<head>
<title>phpMyAdmin</title>
<meta http-equiv="expires" content="0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Refresh" content="0;url=./public/">
<script>
//<![CDATA[
setTimeout(function() { window.location = decodeURI('./public/'); }, 2000);
//]]>
</script>
</head>
<body>
<script>
//<![CDATA[
document.write('<p><a href="./public/">Redirecting…</a></p>');
//]]>
</script>
</body>
</html>