SWDW_Fruit_Store/login/interfaces/login_failed.php
2025-06-06 17:14:52 +08:00

18 lines
618 B
PHP

<html>
<head>
<title>Error Occurred</title>
<link rel="stylesheet" href="./instruct.css" type="text/css" />
</head>
<body>
<div id="area">
<img src="../../icon/close.svg">
<h2 style="margin: none; padding: none;">Oops!</h2>
<h2>Your Username or Password is incorrect!</h2>
<a href='../../login.html' style="text-decoration: none;">Try again</a>
<script type='text/javascript'>
setTimeout(function() {window.location.href = '../login.html';}, 1500);
</script>
</div>
</body>
</html>