13 lines
203 B
HTML
13 lines
203 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Redirecting...</title>
|
|
<script>
|
|
window.location.href = './pages/login.html';
|
|
</script>
|
|
</head>
|
|
<body>
|
|
Redirecting to login...
|
|
</body>
|
|
</html>
|