-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (23 loc) · 749 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (23 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Indigo - Social Media</title>
<script src="Web Front End Files/js/utils.js"></script>
<script src="Web Front End Files/js/router.js"></script>
<script>
// Immediate redirect logic
const user = localStorage.getItem('currentUser');
if (!user) {
window.location.href = 'Web Front End Files/auth/login.html';
} else {
window.location.href = 'Web Front End Files/feed/feed.html';
}
</script>
</head>
<body>
<!-- Fallback if JS disabled or slow -->
<p>Redirecting...</p>
</body>
</html>